summaryrefslogtreecommitdiff
path: root/src/win95/iff.hpp
diff options
context:
space:
mode:
authorSteven Fuller <relnev@icculus.org>2001-07-28 23:13:49 +0000
committerPatryk Obara <dreamer.tan@gmail.com>2019-08-20 02:22:36 +0200
commit71fa444424be52b9b2c3fd508ad663923d28a62c (patch)
treeea900efcb439d1889255e0c598dbf455608f36a4 /src/win95/iff.hpp
parentf759e35cd8399d8bffea4d59c5822db8f1002409 (diff)
Removed headers that were accidently checked in.
Lots of compiling.
Diffstat (limited to 'src/win95/iff.hpp')
-rw-r--r--src/win95/iff.hpp20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/win95/iff.hpp b/src/win95/iff.hpp
index b03b6b2..103ddb0 100644
--- a/src/win95/iff.hpp
+++ b/src/win95/iff.hpp
@@ -48,11 +48,13 @@ namespace IFF
#else
inline void DisplayMessage(char const * pszTitle,char const * pszText)
{
- ::printf("%s\n%s\n",pszTitle,pszText);
+ ::printf("DisplayMessage\n%s\n%s\n",pszTitle,pszText);
+ /*
while (::kbhit())
::getch();
while (!::kbhit() || '\r' != ::getch())
;
+ */
}
#endif
@@ -121,17 +123,17 @@ namespace IFF
#undef BYTE
#pragma message("BYTE was defined - undefining")
#endif
- typedef signed char BYTE;
- typedef unsigned char UBYTE;
+ typedef int8_t BYTE;
+ typedef uint8_t UBYTE;
- typedef signed short INT16;
- typedef unsigned short UINT16;
+ typedef int16_t INT16;
+ typedef uint16_t UINT16;
- typedef signed INT32;
- typedef unsigned UINT32;
+ typedef int32_t INT32;
+ typedef uint32_t UINT32;
- typedef signed __int64 INT64;
- typedef unsigned __int64 UINT64;
+ typedef int64_t INT64;
+ typedef uint64_t UINT64;
struct RGBTriple
{