--- np2/x11/dosio.h 2004/01/13 16:30:21 1.5 +++ np2/x11/dosio.h 2005/03/09 16:13:24 1.9 @@ -1,29 +1,11 @@ #ifndef NP2_X11_DOSIO_H__ #define NP2_X11_DOSIO_H__ -enum { - FTYPE_NONE = 0, // 自動判別 or PC - FTYPE_SMIL, // システム予約 - FTYPE_TEXT, // テキストファイル - FTYPE_BMP, // Bitmap - FTYPE_PICT, // Picture (予約) - FTYPE_PNG, // Png (予約) - FTYPE_WAV, // Wave - FTYPE_D88, // D88 - FTYPE_BETA, // ベタイメージ - FTYPE_THD, // .thd ハードディスクイメージ - FTYPE_HDI, // .hdi ハードディスクイメージ - FTYPE_HDD, // .hdd ハードディスクイメージ (予約) - FTYPE_S98, // .s98 ハードディスクイメージ - FTYPE_MIMPI // mimpi defaultファイル -}; +#include typedef FILE * FILEH; #define FILEH_INVALID NULL -typedef void * FLISTH; -#define FLISTH_INVALID NULL - #define FSEEK_SET SEEK_SET #define FSEEK_CUR SEEK_CUR #define FSEEK_END SEEK_END @@ -57,6 +39,12 @@ typedef struct { } DOSTIME; typedef struct { + char path[MAX_PATH]; + DIR *hdl; +} _FLISTH, *FLISTH; +#define FLISTH_INVALID NULL + +typedef struct { UINT caps; UINT32 size; UINT32 attr; @@ -75,41 +63,41 @@ void dosio_init(void); void dosio_term(void); /* ファイル操作 */ -FILEH file_open(const char *path); -FILEH file_open_rb(const char *path); -FILEH file_create(const char *path); +FILEH file_open(const OEMCHAR *path); +FILEH file_open_rb(const OEMCHAR *path); +FILEH file_create(const OEMCHAR *path); long file_seek(FILEH handle, long pointer, int method); UINT file_read(FILEH handle, void *data, UINT length); UINT file_write(FILEH handle, const void *data, UINT length); short file_close(FILEH handle); UINT file_getsize(FILEH handle); short file_getdatetime(FILEH handle, DOSDATE *dosdate, DOSTIME *dostime); -short file_delete(const char *path); -short file_attr(const char *path); -short file_dircreate(const char *path); +short file_delete(const OEMCHAR *path); +short file_attr(const OEMCHAR *path); +short file_dircreate(const OEMCHAR *path); /* カレントファイル操作 */ -void file_setcd(const char *exepath); -char *file_getcd(const char *sjis); -FILEH file_open_c(const char *sjis); -FILEH file_open_rb_c(const char *sjis); -FILEH file_create_c(const char *sjis); -short file_delete_c(const char *sjis); -short file_attr_c(const char *sjis); +void file_setcd(const OEMCHAR *exepath); +char *file_getcd(const OEMCHAR *sjis); +FILEH file_open_c(const OEMCHAR *sjis); +FILEH file_open_rb_c(const OEMCHAR *sjis); +FILEH file_create_c(const OEMCHAR *sjis); +short file_delete_c(const OEMCHAR *sjis); +short file_attr_c(const OEMCHAR *sjis); -FLISTH file_list1st(const char *dir, FLINFO *fli); +FLISTH file_list1st(const OEMCHAR *dir, FLINFO *fli); BOOL file_listnext(FLISTH hdl, FLINFO *fli); void file_listclose(FLISTH hdl); void file_cpyname(char *dst, const char *src, int maxlen); void file_catname(char *path, const char *sjis, int maxlen); BOOL file_cmpname(const char *path, const char *sjis); -char *file_getname(char *path); -void file_cutname(char *path); -char *file_getext(char *path); -void file_cutext(char *path); -void file_cutseparator(char *path); -void file_setseparator(char *path, int maxlen); +OEMCHAR *file_getname(const OEMCHAR *path); +void file_cutname(OEMCHAR *path); +OEMCHAR *file_getext(const OEMCHAR *path); +void file_cutext(OEMCHAR *path); +void file_cutseparator(OEMCHAR *path); +void file_setseparator(OEMCHAR *path, int maxlen); #ifdef __cplusplus };