1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 19:23:13 +02:00
Files
anope/src/win32/dir/dir.h
T
2022-12-31 22:08:50 +00:00

28 lines
393 B
C

/* POSIX emulation layer for Windows.
*
* (C) 2008-2023 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*/
#include <windows.h>
struct dirent
{
int d_ino;
char *d_name;
};
struct DIR
{
dirent ent;
HANDLE handle;
WIN32_FIND_DATA data;
bool read_first;
};
DIR *opendir(const char *);
dirent *readdir(DIR *);
int closedir(DIR *);