X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Ffile-name.h;h=b4eee83e76aa1d596620f92f2f69d643ae115404;hb=ecad37996f533d5cd8348ad68659470e821f5ebd;hp=8e04d36a926dffb80618b236f60cf7e4309d802b;hpb=f550aee00a62fe1d8baf62d83cd7efef6cc2ee92;p=pspp diff --git a/src/data/file-name.h b/src/data/file-name.h index 8e04d36a92..b4eee83e76 100644 --- a/src/data/file-name.h +++ b/src/data/file-name.h @@ -21,30 +21,28 @@ #include #include -struct string_set; +struct file_handle ; char *fn_search_path (const char *base_name, char **path); -char *fn_dir_name (const char *fn); -char *fn_extension (const char *fn); +char *fn_extension (const struct file_handle *); -bool fn_is_absolute (const char *fn); -bool fn_is_special (const char *fn); -bool fn_exists (const char *fn); +bool fn_exists (const struct file_handle *); -const char *fn_getenv (const char *variable); -const char *fn_getenv_default (const char *variable, const char *def); -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); -FILE *create_stream (const char *fn, const char *mode, mode_t permissions); +const char * default_output_path (void); -struct file_identity *fn_get_identity (const char *file_name); -void fn_free_identity (struct file_identity *); -int fn_compare_file_identities (const struct file_identity *, - const struct file_identity *); -unsigned int fn_hash_identity (const struct file_identity *); +#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); -const char * default_output_path (void); #endif /* file-name.h */