summaryrefslogtreecommitdiff
path: root/win/inspircd_win32wrapper.cpp
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2019-06-10 13:40:37 +0100
committerPeter Powell <petpow@saberuk.com>2019-06-10 13:40:37 +0100
commit6e898936d6e0f44da0992ad09139f0e8e6d141af (patch)
tree21f9d47e49b62fb53e472143eb2907bbd8b990f7 /win/inspircd_win32wrapper.cpp
parentdf9ca5115b64bc5b7888dee3123d0bf6527c496d (diff)
Add a method for getting a list of files in a directory.
Diffstat (limited to 'win/inspircd_win32wrapper.cpp')
-rw-r--r--win/inspircd_win32wrapper.cpp39
1 files changed, 0 insertions, 39 deletions
diff --git a/win/inspircd_win32wrapper.cpp b/win/inspircd_win32wrapper.cpp
index fc739f9bd..8579103e9 100644
--- a/win/inspircd_win32wrapper.cpp
+++ b/win/inspircd_win32wrapper.cpp
@@ -30,45 +30,6 @@
#include <errno.h>
#include <assert.h>
-CoreExport DIR * opendir(const char * path)
-{
- std::string search_path = std::string(path) + "\\*.*";
- WIN32_FIND_DATAA fd;
- HANDLE f = FindFirstFileA(search_path.c_str(), &fd);
- if (f != INVALID_HANDLE_VALUE)
- {
- DIR * d = new DIR;
- memcpy(&d->find_data, &fd, sizeof(WIN32_FIND_DATA));
- d->find_handle = f;
- d->first = true;
- return d;
- }
- else
- {
- return 0;
- }
-}
-
-CoreExport dirent * readdir(DIR * handle)
-{
- if (handle->first)
- handle->first = false;
- else
- {
- if (!FindNextFileA(handle->find_handle, &handle->find_data))
- return 0;
- }
-
- strncpy(handle->dirent_pointer.d_name, handle->find_data.cFileName, MAX_PATH);
- return &handle->dirent_pointer;
-}
-
-CoreExport void closedir(DIR * handle)
-{
- FindClose(handle->find_handle);
- delete handle;
-}
-
int optind = 1;
char optarg[514];
int getopt_long(int ___argc, char *const *___argv, const char *__shortopts, const struct option *__longopts, int *__longind)