From 6d8020e380791e063a70b3802fed2b72de7dcdec Mon Sep 17 00:00:00 2001 From: yazoo Date: Tue, 29 Jan 2008 07:57:27 +0000 Subject: *** empty log message *** --- mpqlib.sln | 20 +++++ mpqlib.vcproj | 259 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ stdint.h | 10 +++ 3 files changed, 289 insertions(+) create mode 100644 mpqlib.sln create mode 100644 mpqlib.vcproj create mode 100644 stdint.h diff --git a/mpqlib.sln b/mpqlib.sln new file mode 100644 index 0000000..e276f2e --- /dev/null +++ b/mpqlib.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mpqlib", "mpqlib.vcproj", "{6EB0B7ED-DF9D-4264-8046-A7D18F927E34}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6EB0B7ED-DF9D-4264-8046-A7D18F927E34}.Debug|Win32.ActiveCfg = Debug|Win32 + {6EB0B7ED-DF9D-4264-8046-A7D18F927E34}.Debug|Win32.Build.0 = Debug|Win32 + {6EB0B7ED-DF9D-4264-8046-A7D18F927E34}.Release|Win32.ActiveCfg = Release|Win32 + {6EB0B7ED-DF9D-4264-8046-A7D18F927E34}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/mpqlib.vcproj b/mpqlib.vcproj new file mode 100644 index 0000000..c6a6ff4 --- /dev/null +++ b/mpqlib.vcproj @@ -0,0 +1,259 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/stdint.h b/stdint.h new file mode 100644 index 0000000..dd9c546 --- /dev/null +++ b/stdint.h @@ -0,0 +1,10 @@ +#ifndef __STD_INT_H_ +#define __STD_INT_H_ + +typedef unsigned char uint8_t; +typedef unsigned short int uint16_t; +typedef signed long int int32_t; +typedef unsigned long int uint32_t; +typedef unsigned __int64 uint64_t; + +#endif \ No newline at end of file -- cgit v1.2.3