Commit d78d3d4f authored by Alexander Barkov's avatar Alexander Barkov

Removing more duplicate declarations.

Fixing DWORD declaration to "unsigned int".
Fixing BIGINT declatation from uint64_t to longlong.
parent eb163377
......@@ -47,14 +47,6 @@ class DllExport FIXFAM : public BLKFAM {
// No additional members
}; // end of class FIXFAM
#if defined(WIN32)
typedef __int64 BIGINT;
#else // !WIN32
typedef off64_t BIGINT;
#define FILE_BEGIN SEEK_SET
#define FILE_CURRENT SEEK_CUR
#define FILE_END SEEK_END
#endif // !WIN32
/***********************************************************************/
/* This is the DOS/UNIX Access Method class declaration for files */
......
......@@ -12,7 +12,7 @@ typedef off_t off64_t;
#if defined(WIN32)
typedef __int64 BIGINT;
#else // !WIN32
typedef off64_t BIGINT;
typedef longlong BIGINT;
#define FILE_BEGIN SEEK_SET
#define FILE_CURRENT SEEK_CUR
#define FILE_END SEEK_END
......@@ -28,7 +28,7 @@ typedef char *LPTSTR;
typedef char *PSZ;
typedef int INT;
#if !defined(NODW)
typedef int DWORD;
typedef unsigned int DWORD;
#endif /* !NODW */
#undef HANDLE
typedef int HANDLE;
......
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