Fix FindClose->closedir
This commit is contained in:
parent
49fd99119d
commit
5ee4931fb6
@ -132,7 +132,12 @@ void GetLocalTime_CP(SYSTEMTIME* out);
|
|||||||
|
|
||||||
typedef void* HANDLE;
|
typedef void* HANDLE;
|
||||||
#define INVALID_HANDLE_VALUE NULL
|
#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 LOCALE_USER_DEFAULT 0
|
||||||
#define DATE_SHORTDATE 0
|
#define DATE_SHORTDATE 0
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user