diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/util.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index d0394ef69..2fb44b8b0 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2002-10-28 Stefan Bellon <[email protected]> + + * util.h [__riscos__]: Added prototypes for new filetype support. + 2002-10-21 Werner Koch <[email protected]> * util.h [__CYGWIN32__]: Don't need the registry prototypes. diff --git a/include/util.h b/include/util.h index a053c68be..7b6c8755d 100644 --- a/include/util.h +++ b/include/util.h @@ -267,6 +267,9 @@ int vasprintf ( char **result, const char *format, va_list args); #include <unixlib/features.h> void riscos_global_defaults(void); #define RISCOS_GLOBAL_STATICS(a) const char *__dynamic_da_name = (a); +int riscos_get_filetype_from_string(const char *string, int len); +int riscos_get_filetype(const char *filename); +void riscos_set_filetype_by_number(const char *filename, int type); void riscos_set_filetype(const char *filename, const char *mimetype); pid_t riscos_getpid(void); int riscos_kill(pid_t pid, int sig); |