contrib/OWB: add correct SDL dependency, fix compilers used
[AROS-Contrib.git] / freetype1 / contrib / ttf2pk / filesrch.h
blob88dc2d9293b467871323f3334b2346734953787a
1 /*
2 * filesrch.h
4 * This file is part of the ttf2pk package.
6 * Copyright 1997-1999 by
7 * Frederic Loyer <loyer@ensta.fr>
8 * Werner Lemberg <wl@gnu.org>
9 */
11 #ifndef FILESRCH_H
12 #define FILESRCH_H
14 #include "ttf2tfm.h"
17 * Arguments are the full program name and two identification strings
18 * (for the program and the environment).
21 void TeX_search_init(char *exec_name,
22 char *program_identifier,
23 char *env_identifier);
26 * The next function returns a version string.
29 char *TeX_search_version(void);
32 * The following functions take a file name (either relative or absolute),
33 * probably append a default extension, and return the complete path to the
34 * file.
37 char *TeX_search_tfm(char **name);
38 char *TeX_search_encoding_file(char **name);
39 char *TeX_search_replacement_file(char **name);
40 char *TeX_search_sfd_file(char **name);
41 char *TeX_search_config_file(char **name);
42 char *TeX_search_ttf_file(char **name);
44 void get_tfm_fullname(Font *fnt);
45 void handle_extension(char **stringp,
46 char *extension);
48 #endif /* FILESRCH_H */
51 /* end */