summaryrefslogtreecommitdiff
path: root/src/win32/dir/dir.h
blob: bddb6b32d738a8b8532e00db572cd0358a3fd768 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 /* POSIX emulation layer for Windows.
 *
 * Copyright (C) 2008-2017 Anope Team <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 *);