Fix FindClose->closedir

This commit is contained in:
erorcun 2021-02-16 18:26:44 +03:00
parent 49fd99119d
commit 5ee4931fb6
1 changed files with 6 additions and 1 deletions

View File

@ -132,7 +132,12 @@ void GetLocalTime_CP(SYSTEMTIME* out);
typedef void* HANDLE;
#define INVALID_HANDLE_VALUE NULL
#define FindClose(h) closedir((DIR*)h)
#define FindClose(h) \
do { \
if (h != nil) \
closedir((DIR*)h); \
} while(0)
#define LOCALE_USER_DEFAULT 0
#define DATE_SHORTDATE 0