From 6e898936d6e0f44da0992ad09139f0e8e6d141af Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Mon, 10 Jun 2019 13:40:37 +0100 Subject: Add a method for getting a list of files in a directory. --- win/inspircd_win32wrapper.cpp | 39 --------------------------------------- 1 file changed, 39 deletions(-) (limited to 'win/inspircd_win32wrapper.cpp') 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 #include -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) -- cgit v1.2.3