fix windows build.
git-svn-id: http://svn.openzap.org/svn/openzap/trunk@211 a93c3328-9c30-0410-af19-c9cd2b2d52af
This commit is contained in:
parent
42c70840d8
commit
e68ece0f1c
|
@ -41,7 +41,7 @@
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories="../src/include;../src/isdn/include"
|
AdditionalIncludeDirectories="../src/include;../src/isdn/include;../src/dsp"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||||
MinimalRebuild="true"
|
MinimalRebuild="true"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
|
@ -109,7 +109,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
AdditionalIncludeDirectories="../src/include;../src/isdn/include"
|
AdditionalIncludeDirectories="../src/include;../src/isdn/include;../src/dsp"
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
DisableLanguageExtensions="false"
|
DisableLanguageExtensions="false"
|
||||||
|
|
|
@ -40,7 +40,12 @@
|
||||||
typedef HANDLE zap_socket_t;
|
typedef HANDLE zap_socket_t;
|
||||||
typedef unsigned __int64 uint64_t;
|
typedef unsigned __int64 uint64_t;
|
||||||
typedef unsigned __int32 uint32_t;
|
typedef unsigned __int32 uint32_t;
|
||||||
|
typedef unsigned __int16 uint16_t;
|
||||||
|
typedef unsigned __int8 uint8_t;
|
||||||
|
typedef __int64 int64_t;
|
||||||
typedef __int32 int32_t;
|
typedef __int32 int32_t;
|
||||||
|
typedef __int16 int16_t;
|
||||||
|
typedef __int8 int8_t;
|
||||||
typedef intptr_t zap_ssize_t;
|
typedef intptr_t zap_ssize_t;
|
||||||
typedef int zap_filehandle_t;
|
typedef int zap_filehandle_t;
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in New Issue