X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Ffile-name.h;h=b4eee83e76aa1d596620f92f2f69d643ae115404;hb=bd5e8f74de87b9061ff62615f48fb378e844e87d;hp=0a0e2f26fe9775c10a999bf44e32d579268d441c;hpb=d62bc5d865e472cd9c20ed54383f29c2a57344ec;p=pspp diff --git a/src/data/file-name.h b/src/data/file-name.h index 0a0e2f26fe..b4eee83e76 100644 --- a/src/data/file-name.h +++ b/src/data/file-name.h @@ -21,15 +21,28 @@ #include #include +struct file_handle ; + char *fn_search_path (const char *base_name, char **path); -char *fn_extension (const char *fn); +char *fn_extension (const struct file_handle *); + +bool fn_exists (const struct file_handle *); -bool fn_is_absolute (const char *fn); -bool fn_exists (const char *fn); -FILE *fn_open (const char *fn, const char *mode); -int fn_close (const char *fn, FILE *file); +FILE *fn_open (const struct file_handle *fn, const char *mode); +int fn_close (const struct file_handle *fn, FILE *file); const char * default_output_path (void); +#if defined _WIN32 || defined __WIN32__ +#define WIN32_LEAN_AND_MEAN /* avoid including junk */ +#define UNICODE 1 +#include +#else +typedef char TCHAR; +#endif + +TCHAR * convert_to_filename_encoding (const char *s, size_t len, const char *current_encoding); + + #endif /* file-name.h */