git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

Windows/dirent.h

      1 #include <windows.h>
      2 
      3 struct dirent {
      4     char d_name[MAX_PATH + 1];
      5 };
      6 
      7 typedef struct {
      8     HANDLE handle;
      9     WIN32_FIND_DATAW entry;
     10     struct dirent out_entry;
     11 } DIR;
     12 
     13 DIR *opendir(const char *filename);
     14 int closedir(DIR *dir);
     15 struct dirent *readdir(DIR *dir);

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.