From f70ad229bc765f3e6fd218f1e54bd0828fc9e1b4 Mon Sep 17 00:00:00 2001 From: pixel Date: Sun, 12 Oct 2003 05:15:00 +0000 Subject: AT LAST!!! Windows 2k/XP CD reading works using raw ioctls!!!! HURRAY!!!!!!!! --- include/BString.h | 2 +- include/generic.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'include') 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 -- cgit v1.2.3