]> icculus.org git repositories - btb/d2x.git/blob - include/findfile.h
fixed opengl credits, scores
[btb/d2x.git] / include / findfile.h
1 // Empty file
2 typedef struct FILEFINDSTRUCT {
3                 unsigned long size;
4                         char name[256];
5 } FILEFINDSTRUCT;
6 int FileFindFirst(char *search_str, FILEFINDSTRUCT *ffstruct);
7 int FileFindNext(FILEFINDSTRUCT *ffstruct);
8 int FileFindClose(void);
9
10 typedef struct FILETIMESTRUCT {
11                 unsigned short date,time;
12 } FILETIMESTRUCT;
13
14 //the both return 0 if no error
15 //int GetFileDateTime(int filehandle, FILETIMESTRUCT *ftstruct);
16 //int SetFileDateTime(int filehandle, FILETIMESTRUCT *ftstruct);
17 //