Commit 9d6677b5 authored by Olivier Bertrand's avatar Olivier Bertrand

_Null_terminated_ not recognized by gcc

parent 40a56581
......@@ -17,14 +17,15 @@ typedef off_t off64_t;
#if defined(__WIN__)
typedef __int64 BIGINT;
typedef _Null_terminated_ const char *PCSZ;
#else // !__WIN__
typedef longlong BIGINT;
#define FILE_BEGIN SEEK_SET
#define FILE_CURRENT SEEK_CUR
#define FILE_END SEEK_END
typedef const char *PCSZ;
#endif // !__WIN__
typedef _Null_terminated_ const char *PCSZ;
#if !defined(__WIN__)
typedef const void *LPCVOID;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment