dxx-rebirth/include/findfile.h
Bradley Bell 9bd1ba7c47 This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.
2001-01-19 03:30:16 +00:00

18 lines
503 B
C

// Empty file
typedef struct FILEFINDSTRUCT {
unsigned long size;
char name[256];
} FILEFINDSTRUCT;
int FileFindFirst(char *search_str, FILEFINDSTRUCT *ffstruct);
int FileFindNext(FILEFINDSTRUCT *ffstruct);
int FileFindClose(void);
typedef struct FILETIMESTRUCT {
unsigned short date,time;
} FILETIMESTRUCT;
//the both return 0 if no error
//int GetFileDateTime(int filehandle, FILETIMESTRUCT *ftstruct);
//int SetFileDateTime(int filehandle, FILETIMESTRUCT *ftstruct);
//