source: other-projects/gs2-export-cdrom-installer/trunk/dirent.h@ 21526

Last change on this file since 21526 was 11664, checked in by mdewsnip, 18 years ago

Fixed the line endings... for real this time, I hope.

  • Property svn:keywords set to Author Date Id Revision
File size: 342 bytes
Line 
1#ifndef _DIRENT_H_
2#define _DIRENT_H_
3#include <windows.h>
4
5typedef struct dirent
6{ char d_name[MAX_PATH];
7} dirent;
8
9typedef struct DIRSTR
10{ HANDLE searchHandle;
11 dirent fileData;
12 int first;
13} DIRSTR;
14
15typedef DIRSTR DIR;
16
17DIR *opendir(const char *filename);
18dirent *readdir(DIR *directory);
19void closedir(DIR *directory);
20#endif
Note: See TracBrowser for help on using the repository browser.