summaryrefslogtreecommitdiff
path: root/storage/connect/os.h
diff options
context:
space:
mode:
Diffstat (limited to 'storage/connect/os.h')
-rw-r--r--storage/connect/os.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/storage/connect/os.h b/storage/connect/os.h
index 797692d47b2..7d0d5cabbb6 100644
--- a/storage/connect/os.h
+++ b/storage/connect/os.h
@@ -16,19 +16,19 @@ typedef off_t off64_t;
#endif
#endif
-#if defined(__WIN__)
+#if defined(_WIN32)
typedef __int64 BIGINT;
typedef _Null_terminated_ const char *PCSZ;
-#else // !__WIN__
+#else // !_WIN32
typedef longlong BIGINT;
#define FILE_BEGIN SEEK_SET
#define FILE_CURRENT SEEK_CUR
#define FILE_END SEEK_END
typedef const char *PCSZ;
-#endif // !__WIN__
+#endif // !_WIN32
-#if !defined(__WIN__)
+#if !defined(_WIN32)
typedef const void *LPCVOID;
typedef const char *LPCTSTR;
typedef const char *LPCSTR;
@@ -65,6 +65,6 @@ typedef int HANDLE;
#define _MAX_EXT FN_EXTLEN
#define INVALID_HANDLE_VALUE (-1)
#define __stdcall
-#endif /* !__WIN__ */
+#endif /* !_WIN32 */
#endif /* _OS_H_INCLUDED */