summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorpixel <pixel>2003-10-12 05:15:00 +0000
committerpixel <pixel>2003-10-12 05:15:00 +0000
commitf70ad229bc765f3e6fd218f1e54bd0828fc9e1b4 (patch)
treea9150cfda7ed8b492254e28f3d1e4769259567ac /include
parent0c065d346b2555943540091651236ff802d720eb (diff)
AT LAST!!!
Windows 2k/XP CD reading works using raw ioctls!!!! HURRAY!!!!!!!!
Diffstat (limited to 'include')
-rw-r--r--include/BString.h2
-rw-r--r--include/generic.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/BString.h b/include/BString.h
index c4703f0..82fe1b5 100644
--- a/include/BString.h
+++ b/include/BString.h
@@ -20,7 +20,7 @@ class String : public Base {
String(int);
String(unsigned int);
String(int64);
- String(uint64);
+ String(Uint64);
String(double);
~String();
const char * set(const char *, va_list);
diff --git a/include/generic.h b/include/generic.h
index c31f8d3..0b16d2c 100644
--- a/include/generic.h
+++ b/include/generic.h
@@ -61,11 +61,11 @@ typedef int32 ssize_t;
#if defined __linux__ || defined sun || defined __solaris__ || defined __CYGWIN32__ || defined __MINGW32__ || defined FORCE64
typedef long long int64;
-typedef unsigned long long uint64;
+typedef unsigned long long Uint64;
#else
#if defined _WIN32
typedef _int64 int64;
-typedef unsigned _int64 uint64;
+typedef unsigned _int64 Uint64;
#else
#error Unsupported platform (need 64 bits ints definition)
#endif