mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-16 10:54:53 +03:00
0022972: Eliminate macro definitions that has compiler-provided analogs (WNT and so on)
1) Macro definition WNT replaced by _WIN32 and _MSC_VER for platform and compiler detection accordingly. 2) Macro definition LIN replaced by __linux__ macro. 3) Macro definition DEB replaced by OCCT_DEBUG macro.
This commit is contained in:
parent
28a73c1fe7
commit
57c28b6122
18
adm/CMPLRS
18
adm/CMPLRS
@ -1,18 +1,18 @@
|
||||
wnt WOKSteps_exec_link DRAWEXE #WOKStep_EXELink(exec.tks)
|
||||
lin WOKSteps_exec_link DRAWEXE #WOKStep_EXELink(exec.tks)
|
||||
|
||||
wnt cmplrs_cxx f -DWNT -D_WINDOWS -D_CRT_SECURE_NO_DEPRECATE -DHAVE_FREEIMAGE -DHAVE_GL2PS -DHAVE_TBB -DHAVE_OPENCL
|
||||
wnt cmplrs_cxx b -DWNT -D_WINDOWS -D_CRT_SECURE_NO_DEPRECATE -DHAVE_FREEIMAGE -DHAVE_GL2PS -DHAVE_TBB -DHAVE_OPENCL
|
||||
wnt cmplrs_cxx f -D_CRT_SECURE_NO_DEPRECATE -DHAVE_FREEIMAGE -DHAVE_GL2PS -DHAVE_TBB -DHAVE_OPENCL
|
||||
wnt cmplrs_cxx b -D_CRT_SECURE_NO_DEPRECATE -DHAVE_FREEIMAGE -DHAVE_GL2PS -DHAVE_TBB -DHAVE_OPENCL
|
||||
wnt cmplrs_cxx Aspect (wnt cmplrs_cxx b) -D_AFXDLL
|
||||
wnt cmplrs_cxx WNT (wnt cmplrs_cxx b) -D_AFXDLL -D_AFXDLL
|
||||
wnt cmplrs_cxx (wnt cmplrs_cxx b) -D_AFXDLL -D_AFXDLL
|
||||
|
||||
wnt cmplrs_c f -DWNT -D_WINDOWS -D_CRT_SECURE_NO_DEPRECATE -DHAVE_FREEIMAGE -DHAVE_GL2PS -DHAVE_TBB -DHAVE_OPENCL
|
||||
wnt cmplrs_c b -DWNT -D_WINDOWS -D_CRT_SECURE_NO_DEPRECATE -DHAVE_FREEIMAGE -DHAVE_GL2PS -DHAVE_TBB -DHAVE_OPENCL
|
||||
wnt cmplrs_c f -D_CRT_SECURE_NO_DEPRECATE -DHAVE_FREEIMAGE -DHAVE_GL2PS -DHAVE_TBB -DHAVE_OPENCL
|
||||
wnt cmplrs_c b -D_CRT_SECURE_NO_DEPRECATE -DHAVE_FREEIMAGE -DHAVE_GL2PS -DHAVE_TBB -DHAVE_OPENCL
|
||||
wnt cmplrs_c NIS (wnt cmplrs_c b) -DSILGL -DSILGL_VRS=50
|
||||
|
||||
lin cmplrs_cxx f -DLIN -DLININTEL -DOCC_CONVERT_SIGNALS -D_GNU_SOURCE=1 -DHAVE_FREEIMAGE -DHAVE_GL2PS -DHAVE_TBB -DHAVE_OPENCL
|
||||
lin cmplrs_cxx b -DLIN -DLININTEL -DOCC_CONVERT_SIGNALS -D_GNU_SOURCE=1 -DHAVE_FREEIMAGE -DHAVE_GL2PS -DHAVE_TBB -DHAVE_OPENCL
|
||||
lin cmplrs_cxx f -DOCC_CONVERT_SIGNALS -D_GNU_SOURCE=1 -DHAVE_FREEIMAGE -DHAVE_GL2PS -DHAVE_TBB -DHAVE_OPENCL
|
||||
lin cmplrs_cxx b -DOCC_CONVERT_SIGNALS -D_GNU_SOURCE=1 -DHAVE_FREEIMAGE -DHAVE_GL2PS -DHAVE_TBB -DHAVE_OPENCL
|
||||
|
||||
lin cmplrs_c f -DLIN -DLININTEL -D_GNU_SOURCE=1 -fexceptions
|
||||
lin cmplrs_c b -DLIN -DLININTEL -D_GNU_SOURCE=1 -fexceptions
|
||||
lin cmplrs_c f -D_GNU_SOURCE=1 -fexceptions
|
||||
lin cmplrs_c b -D_GNU_SOURCE=1 -fexceptions
|
||||
|
||||
|
@ -13,11 +13,11 @@ endif()
|
||||
|
||||
add_definitions (-DCSFDB)
|
||||
if (WIN32)
|
||||
add_definitions (/DWNT -wd4996)
|
||||
add_definitions (-wd4996)
|
||||
elseif (APPLE)
|
||||
add_definitions (-fexceptions -fPIC -DOCC_CONVERT_SIGNALS -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H)
|
||||
add_definitions (-fexceptions -fPIC -DOCC_CONVERT_SIGNALS)
|
||||
else()
|
||||
add_definitions (-fexceptions -fPIC -DOCC_CONVERT_SIGNALS -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -DLIN)
|
||||
add_definitions (-fexceptions -fPIC -DOCC_CONVERT_SIGNALS)
|
||||
endif()
|
||||
|
||||
# enable structured exceptions for MSVC
|
||||
@ -28,6 +28,34 @@ elseif (WIN32)
|
||||
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -EHa")
|
||||
endif()
|
||||
|
||||
# remove _WINDOWS flag if it exists
|
||||
string (REGEX MATCH "/D_WINDOWS" IS_WINDOWSFLAG "${CMAKE_CXX_FLAGS}")
|
||||
if (IS_WINDOWSFLAG)
|
||||
message (STATUS "/D_WINDOWS has been removed from CMAKE_CXX_FLAGS")
|
||||
string (REGEX REPLACE "/D_WINDOWS" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
||||
endif()
|
||||
|
||||
# remove WIN32 flag if it exists
|
||||
string (REGEX MATCH "/DWIN32" IS_WIN32FLAG "${CMAKE_CXX_FLAGS}")
|
||||
if (IS_WIN32FLAG)
|
||||
message (STATUS "/DWIN32 has been removed from CMAKE_CXX_FLAGS")
|
||||
string (REGEX REPLACE "/DWIN32" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
||||
endif()
|
||||
|
||||
# remove _WINDOWS flag if it exists
|
||||
string (REGEX MATCH "/D_WINDOWS" IS_WINDOWSFLAG "${CMAKE_C_FLAGS}")
|
||||
if (IS_WINDOWSFLAG)
|
||||
message (STATUS "/D_WINDOWS has been removed from CMAKE_C_FLAGS")
|
||||
string (REGEX REPLACE "/D_WINDOWS" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
|
||||
endif()
|
||||
|
||||
# remove WIN32 flag if it exists
|
||||
string (REGEX MATCH "/DWIN32" IS_WIN32FLAG "${CMAKE_C_FLAGS}")
|
||||
if (IS_WIN32FLAG)
|
||||
message (STATUS "/DWIN32 has been removed from CMAKE_C_FLAGS")
|
||||
string (REGEX REPLACE "/DWIN32" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
|
||||
endif()
|
||||
|
||||
# remove DEBUG flag if it exists
|
||||
string (REGEX MATCH "-DDEBUG" IS_DEBUG_CXX "${CMAKE_CXX_FLAGS_DEBUG}")
|
||||
if (IS_DEBUG_CXX)
|
||||
@ -64,7 +92,4 @@ if (DEFINED CMAKE_COMPILER_IS_GNUCXX OR "x${CMAKE_CXX_COMPILER_ID}" STREQUAL "xC
|
||||
endif()
|
||||
|
||||
set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -DNo_Exception")
|
||||
set (CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -DNo_Exception")
|
||||
|
||||
set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -DDEB")
|
||||
set (CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -DDEB")
|
||||
set (CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -DNo_Exception")
|
@ -2007,12 +2007,8 @@ proc osutils:cbpx { theOutDir theToolKit } {
|
||||
# extra macros
|
||||
lappend aTKDefines "CSFDB"
|
||||
if { "$aWokStation" == "wnt" } {
|
||||
lappend aTKDefines "WNT"
|
||||
lappend aTKDefines "_CRT_SECURE_NO_DEPRECATE"
|
||||
} else {
|
||||
if { "$aWokStation" == "lin" } {
|
||||
lappend aTKDefines "LIN"
|
||||
}
|
||||
lappend aTKDefines "OCC_CONVERT_SIGNALS"
|
||||
#lappend aTKDefines "_GNU_SOURCE=1"
|
||||
}
|
||||
@ -2283,12 +2279,8 @@ proc osutils:tkinfo { theRelativePath theToolKit theUsedLib theFrameworks theInc
|
||||
# extra macros
|
||||
lappend aTKDefines "CSFDB"
|
||||
if { "$aWokStation" == "wnt" } {
|
||||
lappend aTKDefines "WNT"
|
||||
lappend aTKDefines "_CRT_SECURE_NO_DEPRECATE"
|
||||
} else {
|
||||
if { "$aWokStation" == "lin" } {
|
||||
lappend aTKDefines "LIN"
|
||||
}
|
||||
lappend aTKDefines "OCC_CONVERT_SIGNALS"
|
||||
#lappend aTKDefines "_GNU_SOURCE=1"
|
||||
}
|
||||
|
@ -85,7 +85,7 @@
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<PreprocessorDefinitions>NDEBUG;WIN32;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<ExceptionHandling>Async</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
@ -100,7 +100,7 @@
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>NDEBUG;WIN32;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>__TKDEP__;ws2_32.lib;vfw32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
@ -128,7 +128,7 @@
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<PreprocessorDefinitions>DEB;_DEBUG;WIN32;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Async</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<AssemblerListingLocation>.\..\..\..\win32\__VCVER__\objd\__TKNAM__/</AssemblerListingLocation>
|
||||
@ -144,7 +144,7 @@
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>DEB;_DEBUG;WIN32;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>__TKDEP__;ws2_32.lib;vfw32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
@ -173,7 +173,7 @@
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<PreprocessorDefinitions>NDEBUG;WIN64;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<ExceptionHandling>Async</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
@ -188,7 +188,7 @@
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>NDEBUG;WIN64;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>__TKDEP__;ws2_32.lib;vfw32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
@ -216,7 +216,7 @@
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<PreprocessorDefinitions>DEB;_DEBUG;WIN64;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Async</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<AssemblerListingLocation>.\..\..\..\win64\__VCVER__\objd\__TKNAM__/</AssemblerListingLocation>
|
||||
@ -232,7 +232,7 @@
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>DEB;_DEBUG;WIN64;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>__TKDEP__;ws2_32.lib;vfw32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
|
@ -85,7 +85,7 @@
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<PreprocessorDefinitions>NDEBUG;WIN32;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<ExceptionHandling>Async</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
@ -100,7 +100,7 @@
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>NDEBUG;WIN32;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>__TKDEP__;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
@ -127,7 +127,7 @@
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<PreprocessorDefinitions>DEB;_DEBUG;WIN32;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Async</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<AssemblerListingLocation>.\..\..\..\win32\__VCVER__\objd\__XQTNAM__/</AssemblerListingLocation>
|
||||
@ -143,7 +143,7 @@
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>DEB;_DEBUG;WIN32;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>__TKDEP__;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
@ -171,7 +171,7 @@
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<PreprocessorDefinitions>NDEBUG;WIN64;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<ExceptionHandling>Async</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
@ -186,7 +186,7 @@
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>NDEBUG;WIN64;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>__TKDEP__;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
@ -213,7 +213,7 @@
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<PreprocessorDefinitions>DEB;_DEBUG;WIN64;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Async</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<AssemblerListingLocation>.\..\..\..\win64\__VCVER__\objd\__XQTNAM__/</AssemblerListingLocation>
|
||||
@ -229,7 +229,7 @@
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>DEB;_DEBUG;WIN64;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>__TKDEP__;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
|
@ -22,7 +22,7 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
StringPooling="TRUE"
|
||||
RuntimeLibrary="2"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
@ -62,7 +62,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
Culture="1036"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
@ -89,8 +89,8 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="0"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="DEB;_DEBUG;WIN32;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
BasicRuntimeChecks="3"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
PrecompiledHeaderFile=".\..\..\..\win32\vc7\objd\__TKNAM__\__TKNAM__.pch"
|
||||
AssemblerListingLocation=".\..\..\..\win32\vc7\objd\__TKNAM__/"
|
||||
@ -131,7 +131,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="DEB;_DEBUG;WIN32;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
Culture="1036"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
|
@ -22,7 +22,7 @@
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN32;DEB;_DEBUG;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
AssemblerListingLocation=".\..\..\..\win32\vc7\objd\__XQTNAM__/"
|
||||
@ -61,7 +61,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="WIN32;DEB;_DEBUG;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
Culture="1033"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
@ -86,7 +86,7 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;No_Exception;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
StringPooling="TRUE"
|
||||
RuntimeLibrary="2"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
@ -124,7 +124,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;No_Exception;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
Culture="1033"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
|
@ -50,7 +50,7 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
StringPooling="true"
|
||||
ExceptionHandling="2"
|
||||
RuntimeLibrary="2"
|
||||
@ -71,7 +71,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
Culture="1036"
|
||||
/>
|
||||
<Tool
|
||||
@ -149,7 +149,7 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="0"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="DEB;_DEBUG;WIN32;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
ExceptionHandling="2"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
@ -172,7 +172,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="DEB;_DEBUG;WIN32;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
Culture="1036"
|
||||
/>
|
||||
<Tool
|
||||
@ -251,7 +251,7 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="NDEBUG;WIN64;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
StringPooling="true"
|
||||
ExceptionHandling="2"
|
||||
RuntimeLibrary="2"
|
||||
@ -271,7 +271,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="NDEBUG;WIN64;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
Culture="1036"
|
||||
/>
|
||||
<Tool
|
||||
@ -350,7 +350,7 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="0"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="DEB;_DEBUG;WIN64;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
ExceptionHandling="2"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
@ -372,7 +372,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="DEB;_DEBUG;WIN64;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
Culture="1036"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -49,7 +49,7 @@
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN32;DEB;_DEBUG;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__;"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__;"
|
||||
ExceptionHandling="2"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
@ -69,7 +69,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="WIN32;DEB;_DEBUG;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__;"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__;"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
@ -146,7 +146,7 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;No_Exception;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__;"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;"
|
||||
StringPooling="true"
|
||||
ExceptionHandling="2"
|
||||
RuntimeLibrary="2"
|
||||
@ -166,7 +166,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;No_Exception;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__;"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__;"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
@ -242,7 +242,7 @@
|
||||
AdditionalOptions="/favor:blend"
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN64;DEB;_DEBUG;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
ExceptionHandling="2"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
@ -261,7 +261,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="WIN64;DEB;_DEBUG;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
@ -340,7 +340,7 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="WIN64;NDEBUG;No_Exception;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
StringPooling="true"
|
||||
ExceptionHandling="2"
|
||||
RuntimeLibrary="2"
|
||||
@ -359,7 +359,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="WIN64;NDEBUG;No_Exception;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
Culture="1033"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -52,7 +52,7 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
StringPooling="true"
|
||||
ExceptionHandling="2"
|
||||
RuntimeLibrary="2"
|
||||
@ -73,7 +73,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
@ -150,7 +150,7 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="0"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="DEB;_DEBUG;WIN32;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
ExceptionHandling="2"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
@ -173,7 +173,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="DEB;_DEBUG;WIN32;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
@ -248,7 +248,7 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="NDEBUG;WIN64;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
StringPooling="true"
|
||||
ExceptionHandling="2"
|
||||
RuntimeLibrary="2"
|
||||
@ -268,7 +268,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="NDEBUG;WIN64;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
@ -343,7 +343,7 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="0"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="DEB;_DEBUG;WIN64;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
ExceptionHandling="2"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
@ -365,7 +365,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="DEB;_DEBUG;WIN64;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
|
@ -52,7 +52,7 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
StringPooling="true"
|
||||
ExceptionHandling="2"
|
||||
RuntimeLibrary="2"
|
||||
@ -72,7 +72,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;WNT;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
@ -144,7 +144,7 @@
|
||||
AdditionalOptions="-MP"
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="DEB;_DEBUG;WIN32;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
ExceptionHandling="2"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
@ -164,7 +164,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="DEB;_DEBUG;WIN32;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
@ -238,7 +238,7 @@
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
PreprocessorDefinitions="WIN64;NDEBUG;No_Exception;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
StringPooling="true"
|
||||
ExceptionHandling="2"
|
||||
RuntimeLibrary="2"
|
||||
@ -257,7 +257,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="WIN64;NDEBUG;No_Exception;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="NDEBUG;No_Exception;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
@ -330,7 +330,7 @@
|
||||
AdditionalOptions="-MP -favor:blend"
|
||||
AdditionalIncludeDirectories="__TKINC__;$(CSF_OPT_INC)"
|
||||
Optimization="0"
|
||||
PreprocessorDefinitions="WIN64;DEB;_DEBUG;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
ExceptionHandling="2"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
@ -349,7 +349,7 @@
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\inc;$(CSF_OPT_INC)"
|
||||
PreprocessorDefinitions="WIN64;DEB;_DEBUG;_WINDOWS;WNT;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
PreprocessorDefinitions="_DEBUG;CSFDB;$(CSF_DEFINES)__TKDEFS__"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include <Standard_Boolean.hxx>
|
||||
|
||||
#ifndef __AppBlend_API
|
||||
# if defined(WNT) && !defined(HAVE_NO_DLL)
|
||||
# if defined(_WIN32) && !defined(HAVE_NO_DLL)
|
||||
# ifdef __AppBlend_DLL
|
||||
# define __AppBlend_API __declspec( dllexport )
|
||||
# else
|
||||
@ -25,7 +25,7 @@
|
||||
# endif /*__AppBlend_DLL*/
|
||||
# else
|
||||
# define __AppBlend_API
|
||||
# endif /*WNT*/
|
||||
# endif /*_WIN32*/
|
||||
#endif /*__AppBlend_API*/
|
||||
|
||||
//****************************************************
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include <Standard_Real.hxx>
|
||||
|
||||
//#ifndef __AppCont_API
|
||||
//#if defined(WNT) && !defined(HAVE_NO_DLL)
|
||||
//#if defined(_WIN32) && !defined(HAVE_NO_DLL)
|
||||
//# ifdef __AppCont_DLL
|
||||
//# define __AppCont_API __declspec( dllexport )
|
||||
//# else
|
||||
@ -26,7 +26,7 @@
|
||||
//# endif /* __AppCont_DLL */
|
||||
//# else
|
||||
//# define __AppCont_API
|
||||
//# endif /* WNT */
|
||||
//# endif /* _WIN32 */
|
||||
//#endif /* __AppCont_API */
|
||||
|
||||
|
||||
|
@ -82,10 +82,10 @@
|
||||
// Add this line:
|
||||
#include <algorithm>
|
||||
|
||||
#if defined(WNT)
|
||||
#if defined(_MSC_VER)
|
||||
# include <stdio.h>
|
||||
# include <stdarg.h>
|
||||
#endif /* WNT */
|
||||
#endif /* _MSC_VER */
|
||||
|
||||
//
|
||||
//=======================================================================
|
||||
|
@ -22,10 +22,10 @@
|
||||
#ifndef _Aspect_Drawable_HeaderFile
|
||||
#define _Aspect_Drawable_HeaderFile
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
typedef void* Aspect_Drawable; /* HDC under WNT */
|
||||
#else
|
||||
typedef unsigned long Aspect_Drawable; /* Window or Pixmap under UNIX */
|
||||
#endif /* WNT */
|
||||
#endif /* _WIN32 */
|
||||
|
||||
#endif /* _Aspect_Drawable_HeaderFile */
|
||||
|
@ -21,11 +21,11 @@
|
||||
#ifndef _Aspect_Handle_HeaderFile
|
||||
#define _Aspect_Handle_HeaderFile
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
typedef void* HANDLE;
|
||||
typedef HANDLE Aspect_Handle;
|
||||
#else
|
||||
typedef unsigned long Aspect_Handle;
|
||||
#endif /* WNT */
|
||||
#endif /* _WIN32 */
|
||||
|
||||
#endif /* _Aspect_Handle_HeaderFile */
|
||||
|
@ -89,5 +89,5 @@ typedef struct _xcolor {
|
||||
|
||||
} XColor;
|
||||
|
||||
# endif /* WNT */
|
||||
# endif /* _WIN32 */
|
||||
#endif /* __Aspect_WNTXWD_HXX */
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include <BOPDS_PassKey.hxx>
|
||||
|
||||
#include <stdio.h>
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning( disable : 4101)
|
||||
#endif
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include <Standard_Type.hxx>
|
||||
|
||||
#include <algorithm>
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning ( disable : 4291 )
|
||||
#endif
|
||||
|
||||
|
@ -74,9 +74,6 @@
|
||||
#include <TopTools_MapOfShape.hxx>
|
||||
|
||||
#include <stdio.h>
|
||||
//Patch
|
||||
//#ifdef WNT
|
||||
//#endif
|
||||
static void Propagate(const TopTools_IndexedDataMapOfShapeListOfShape&,
|
||||
const TopoDS_Shape&, // edge
|
||||
TopTools_MapOfShape&); // mapofedge
|
||||
|
@ -2350,7 +2350,7 @@ Standard_Real BRepMesh_Delaun::polyArea(const BRepMesh::SequenceOfInteger& thePo
|
||||
return aArea / 2.;
|
||||
}
|
||||
|
||||
#ifdef DEB
|
||||
#ifdef OCCT_DEBUG
|
||||
//=======================================================================
|
||||
//function : BRepMesh_DumpPoly
|
||||
//purpose :
|
||||
|
@ -31,11 +31,11 @@ namespace
|
||||
TCollection_AsciiString& theLibName)
|
||||
{
|
||||
theLibName = "";
|
||||
#ifndef WNT
|
||||
#ifndef _WIN32
|
||||
theLibName += "lib";
|
||||
#endif
|
||||
theLibName += theDefaultName;
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
theLibName += ".dll";
|
||||
#elif __APPLE__
|
||||
theLibName += ".dylib";
|
||||
|
@ -620,7 +620,6 @@ static Standard_Integer maxtolerance(Draw_Interpretor& theCommands,
|
||||
|
||||
nbV = mapS.Extent();
|
||||
|
||||
//#ifndef WNT
|
||||
Standard_SStream sss;
|
||||
sss << "\n## Tolerances on the shape " << a[1] << " (nbFaces:" << nbF
|
||||
<< " nbEdges:" << nbE << " nbVtx:" << nbV << ")\n" ;
|
||||
@ -630,7 +629,7 @@ static Standard_Integer maxtolerance(Draw_Interpretor& theCommands,
|
||||
if(TmE<=TME) sss << "\n Edge : Min " << setw(8) << TmE <<" Max " << setw(8) << TME << " \n ";
|
||||
if(TmV<=TMV) sss << "\n Vertex : Min " << setw(8) << TmV <<" Max " << setw(8) << TMV << " \n ";
|
||||
theCommands << sss;
|
||||
//#endif*/
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -69,7 +69,7 @@
|
||||
#include <TopOpeBRepDS_Transition.hxx>
|
||||
|
||||
#include <stdio.h>
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include <TColStd_MapIteratorOfPackedMapOfInteger.hxx>
|
||||
|
||||
|
||||
//#ifdef WNT
|
||||
//#ifdef _MSC_VER
|
||||
#include <stdio.h>
|
||||
//#endif
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include <Geom_Plane.hxx>
|
||||
#include <gp_Pln.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -50,7 +50,7 @@
|
||||
#include <DBRep.hxx>
|
||||
#include <TopoDS.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -24,9 +24,8 @@
|
||||
#include <TopExp_Explorer.hxx>
|
||||
#include <BRepTest.hxx>
|
||||
#include <TopoDS.hxx>
|
||||
//#ifdef WNT
|
||||
#include <stdio.h>
|
||||
//#endif
|
||||
|
||||
static Standard_Integer prj(Draw_Interpretor& di, Standard_Integer n, const char** a)
|
||||
{
|
||||
char newname[255];
|
||||
|
@ -44,7 +44,6 @@
|
||||
|
||||
static BRepOffsetAPI_MakePipeShell* Sweep= 0;
|
||||
|
||||
//#ifdef WNT
|
||||
#include <stdio.h>
|
||||
#include <Geom_Curve.hxx>
|
||||
#include <GeomAdaptor_HCurve.hxx>
|
||||
@ -53,7 +52,6 @@ static BRepOffsetAPI_MakePipeShell* Sweep= 0;
|
||||
#include <BRepBuilderAPI_MakeFace.hxx>
|
||||
#include <BRep_Tool.hxx>
|
||||
#include <gp_Pnt.hxx>
|
||||
//#endi#include <gp_Vec.hxx>
|
||||
#include <gp_Vec.hxx>
|
||||
#include <Geom_Circle.hxx>
|
||||
#include <gp_Ax2.hxx>
|
||||
|
@ -58,7 +58,7 @@
|
||||
|
||||
#ifdef MacOS
|
||||
#define strcasecmp(p,q) strcmp(p,q)
|
||||
#elseif WNT
|
||||
#elseif _WIN32
|
||||
#define strcasecmp strcmp
|
||||
#elseif AIX
|
||||
#include <string.h>
|
||||
|
@ -42,7 +42,7 @@
|
||||
#include <TopoDS_Edge.hxx>
|
||||
#include <TopoDS_Face.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include <Standard_Boolean.hxx>
|
||||
|
||||
#ifndef __Blend_API
|
||||
# if defined(WNT) && !defined(HAVE_NO_DLL)
|
||||
# if defined(_WIN32) && !defined(HAVE_NO_DLL)
|
||||
# ifdef __Blend_DLL
|
||||
# define __Blend_API __declspec( dllexport )
|
||||
# else
|
||||
@ -25,7 +25,7 @@
|
||||
# endif /*__Blend_DLL*/
|
||||
# else
|
||||
# define __Blend_API
|
||||
# endif /*WNT*/
|
||||
# endif /*_WIN32*/
|
||||
#endif /*__Blend_API*/
|
||||
|
||||
//*************************************************
|
||||
|
@ -25,8 +25,6 @@
|
||||
#include <TColStd_ListIteratorOfListOfInteger.hxx>
|
||||
|
||||
#include <stdio.h>
|
||||
//#if defined(WNT) || defined(LIN)
|
||||
//#endif // WNT
|
||||
//-- ================================================================================
|
||||
//-- lbr le 27 fev 97
|
||||
//--
|
||||
|
@ -25,9 +25,9 @@
|
||||
#include <TCollection_ExtendedString.hxx>
|
||||
#include <UTL.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#include <tchar.h>
|
||||
#endif // WNT
|
||||
#endif // _MSC_VER
|
||||
|
||||
|
||||
//==============================================================================
|
||||
@ -35,11 +35,11 @@
|
||||
//purpose :
|
||||
//==============================================================================
|
||||
static void PutSlash (TCollection_ExtendedString& anXSTRING) {
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
anXSTRING+="\\";
|
||||
#else
|
||||
anXSTRING+="/";
|
||||
#endif // WNT
|
||||
#endif // _WIN32
|
||||
}
|
||||
|
||||
//==============================================================================
|
||||
@ -169,7 +169,7 @@ TCollection_ExtendedString CDF_FWOSDriver::DefaultFolder()
|
||||
TCollection_ExtendedString theDefaultFolder;
|
||||
if (theDefaultFolder.Length() == 0) {
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
TCollection_ExtendedString hd=UTL::xgetenv("HOMEDRIVE");
|
||||
if(hd.Length() != NULL) {
|
||||
theDefaultFolder=hd;
|
||||
@ -218,7 +218,7 @@ TCollection_ExtendedString CDF_FWOSDriver::SetName(const Handle(CDM_Document)& a
|
||||
|
||||
TCollection_ExtendedString xn(aName), n(aName);
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
//windows is not case sensitive
|
||||
//make the extension lower case
|
||||
for(int i = 1; i <= xn.Length(); i++)
|
||||
@ -232,7 +232,7 @@ TCollection_ExtendedString CDF_FWOSDriver::SetName(const Handle(CDM_Document)& a
|
||||
TCollection_ExtendedString e (aDocument->FileExtension());
|
||||
TCollection_ExtendedString xe(e);
|
||||
if (e.Length() > 0) {
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
//windows is not case sensitive
|
||||
//make the extension lower case
|
||||
for(int i = 1; i <= xe.Length(); i++)
|
||||
|
@ -122,7 +122,7 @@ Standard_Boolean CDF_Store::SetFolder(const TCollection_ExtendedString& aFolder
|
||||
// it is removed.
|
||||
// This is correct for Unix systems but not for Windows! VMS and MAC? Thomas Haller, 23.11.01
|
||||
if(l > 1) {
|
||||
#ifndef WNT
|
||||
#ifndef _WIN32
|
||||
if(theFolder.Value(l) == theFolder.Value(1)) theFolder.Trunc(l-1);
|
||||
#else
|
||||
if (theFolder.Value(l) == '/' || theFolder.Value(l) == '\\')
|
||||
|
@ -69,7 +69,7 @@ static Standard_Integer PlotCount = 0; // PlotEdge and PlotIso for cases of "
|
||||
// PlotEdge or PlotIso
|
||||
static TopoDS_Shape pickshape;
|
||||
static Standard_Real upick,vpick;
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
extern Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include <TCollection_HAsciiString.hxx>
|
||||
#include <OSD_File.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
|
@ -222,7 +222,7 @@ ostream* myOStream;
|
||||
|
||||
};
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning (default : 4275)
|
||||
#endif
|
||||
|
||||
|
@ -1232,7 +1232,7 @@ static Standard_Integer DDataStd_KeepUTF (Draw_Interpretor& di,
|
||||
DDF::AddLabel(DF, arg[2], L);
|
||||
Standard_CString aFileName(arg[3]);
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
ifstream anIS (aFileName, ios::in | ios::binary);
|
||||
#else
|
||||
ifstream anIS (aFileName);
|
||||
@ -1304,7 +1304,7 @@ static Standard_Integer DDataStd_GetUTFtoFile (Draw_Interpretor& di,
|
||||
|
||||
Standard_CString aFileName(arg[3]);
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
ofstream anOS (aFileName, ios::in | ios::binary | ios::ate);
|
||||
#else
|
||||
ofstream anOS (aFileName, ios::ate);
|
||||
|
@ -52,7 +52,7 @@
|
||||
#include <DDataStd_DrawPresentation.hxx>
|
||||
#include <DDataStd_DrawDriver.hxx>
|
||||
|
||||
#ifndef WNT
|
||||
#ifndef _WIN32
|
||||
extern Draw_Viewer dout;
|
||||
#else
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include <TDF_RelocationTable.hxx>
|
||||
#include <TDF_Tool.hxx>
|
||||
|
||||
#ifndef WNT
|
||||
#ifndef _WIN32
|
||||
extern Draw_Viewer dout;
|
||||
#else
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
|
@ -53,7 +53,7 @@
|
||||
#include <gp_Trsf.hxx>
|
||||
|
||||
#include <TColStd_HArray1OfInteger.hxx>
|
||||
//#ifdef WNT
|
||||
//#ifdef _MSC_VER
|
||||
#include <stdio.h>
|
||||
//#endif
|
||||
|
||||
|
@ -71,7 +71,7 @@
|
||||
#include <DNaming_SphereDriver.hxx>
|
||||
#include <DNaming_PointDriver.hxx>
|
||||
#include <DNaming_Line3DDriver.hxx>
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
#define EXCEPTION ...
|
||||
#else
|
||||
#define EXCEPTION Standard_Failure
|
||||
|
@ -53,7 +53,7 @@
|
||||
#include <TopTools_MapIteratorOfMapOfShape.hxx>
|
||||
#include <TopTools_MapOfShape.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
#define EXCEPTION ...
|
||||
#else
|
||||
#define EXCEPTION Standard_Failure
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
//#include <AppStdL_Application.hxx>
|
||||
// avoid warnings on 'extern "C"' functions returning C++ classes
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(4:4190)
|
||||
#endif
|
||||
//static Handle(AppStdL_Application) stdApp;
|
||||
|
@ -14,7 +14,7 @@
|
||||
commercial license or contractual agreement.
|
||||
*/
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
|
||||
|
||||
#define COMMANDCLASS "COMMANDWINDOW"
|
||||
|
@ -14,7 +14,7 @@
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
|
||||
#define COMMANDCLASS "COMMANDWINDOW"
|
||||
|
@ -76,7 +76,7 @@ Standard_EXPORT Standard_Boolean Draw_Interprete(const char* command);
|
||||
// *******************************************************************
|
||||
// read an init file
|
||||
// *******************************************************************
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
extern console_semaphore_value volatile console_semaphore;
|
||||
extern char console_command[1000];
|
||||
#endif
|
||||
@ -84,7 +84,7 @@ extern char console_command[1000];
|
||||
static void ReadInitFile (const TCollection_AsciiString& theFileName)
|
||||
{
|
||||
TCollection_AsciiString aPath = theFileName;
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
if (!Draw_Batch) {
|
||||
try {
|
||||
aPath.ChangeAll ('\\', '/');
|
||||
@ -104,7 +104,7 @@ static void ReadInitFile (const TCollection_AsciiString& theFileName)
|
||||
Sprintf (com, "source %s", aPath.ToCString());
|
||||
Draw_Interprete (com);
|
||||
delete [] com;
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
}
|
||||
#endif
|
||||
}
|
||||
@ -123,7 +123,7 @@ Handle(Draw_ProgressIndicator) Draw::GetProgressBar()
|
||||
return PInd;
|
||||
}
|
||||
|
||||
#ifndef WNT
|
||||
#ifndef _WIN32
|
||||
/*--------------------------------------------------------*\
|
||||
| exitProc: finalization handler for Tcl/Tk thread. Forces parent process to die
|
||||
\*--------------------------------------------------------*/
|
||||
@ -254,12 +254,12 @@ void Draw_Appli(Standard_Integer argc, char** argv,const FDraw_InitAppli Draw_In
|
||||
// *****************************************************************
|
||||
// init X window and create display
|
||||
// *****************************************************************
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
HWND hWnd = NULL;
|
||||
#endif
|
||||
|
||||
if (!Draw_Batch)
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Draw_Batch=!Init_Appli(hInst, hPrevInst, nShow, hWnd);
|
||||
#else
|
||||
Draw_Batch=!Init_Appli();
|
||||
@ -294,7 +294,7 @@ void Draw_Appli(Standard_Integer argc, char** argv,const FDraw_InitAppli Draw_In
|
||||
// *****************************************************************
|
||||
Draw_InitAppli(theCommands);
|
||||
|
||||
#ifndef WNT
|
||||
#ifndef _WIN32
|
||||
Tcl_CreateExitHandler(exitProc, 0);
|
||||
#endif
|
||||
|
||||
@ -307,7 +307,7 @@ void Draw_Appli(Standard_Integer argc, char** argv,const FDraw_InitAppli Draw_In
|
||||
{
|
||||
if (getenv ("CASROOT") == NULL)
|
||||
{
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
ReadInitFile ("ddefault");
|
||||
#else
|
||||
cout << " the CASROOT variable is mandatory to Run OpenCascade "<< endl;
|
||||
@ -331,7 +331,7 @@ void Draw_Appli(Standard_Integer argc, char** argv,const FDraw_InitAppli Draw_In
|
||||
ReadInitFile (aRunFile);
|
||||
// provide a clean exit, this is useful for some analysis tools
|
||||
if ( ! isInteractiveForced )
|
||||
#ifndef WNT
|
||||
#ifndef _WIN32
|
||||
return;
|
||||
#else
|
||||
ExitProcess(0);
|
||||
@ -343,7 +343,7 @@ void Draw_Appli(Standard_Integer argc, char** argv,const FDraw_InitAppli Draw_In
|
||||
Draw_Interprete (aCommand.ToCString());
|
||||
// provide a clean exit, this is useful for some analysis tools
|
||||
if ( ! isInteractiveForced )
|
||||
#ifndef WNT
|
||||
#ifndef _WIN32
|
||||
return;
|
||||
#else
|
||||
ExitProcess(0);
|
||||
@ -354,7 +354,7 @@ void Draw_Appli(Standard_Integer argc, char** argv,const FDraw_InitAppli Draw_In
|
||||
// X loop
|
||||
// *****************************************************************
|
||||
if (XLoop) {
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Run_Appli(hWnd);
|
||||
#else
|
||||
Run_Appli(Draw_Interprete);
|
||||
@ -372,7 +372,7 @@ void Draw_Appli(Standard_Integer argc, char** argv,const FDraw_InitAppli Draw_In
|
||||
cmd[i] = '\0';
|
||||
} while (Draw_Interprete(cmd) != (unsigned int ) -2);
|
||||
}
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
// Destruction de l'application
|
||||
Destroy_Appli(hInst);
|
||||
#endif
|
||||
@ -491,11 +491,11 @@ void Draw::Load(Draw_Interpretor& theDI, const TCollection_AsciiString& theKey,
|
||||
}
|
||||
|
||||
TCollection_AsciiString aPluginLibrary("");
|
||||
#ifndef WNT
|
||||
#ifndef _WIN32
|
||||
aPluginLibrary += "lib";
|
||||
#endif
|
||||
aPluginLibrary += aPluginResource->Value(theKey.ToCString());
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
aPluginLibrary += ".dll";
|
||||
#elif __APPLE__
|
||||
aPluginLibrary += ".dylib";
|
||||
|
@ -14,7 +14,7 @@
|
||||
commercial license or contractual agreement.
|
||||
*/
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
|
||||
//{{NO_DEPENDENCIES}}
|
||||
// Microsoft Developer Studio generated include file.
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
typedef void (*FDraw_InitAppli)(Draw_Interpretor&);
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
//extern void Draw_Appli(HINSTANCE,HINSTANCE,LPSTR,int);
|
||||
Standard_EXPORT void Draw_Appli(HINSTANCE,HINSTANCE,LPSTR,int,
|
||||
@ -41,7 +41,7 @@ extern void Draw_Appli(Standard_Integer argc, char** argv,
|
||||
|
||||
|
||||
|
||||
#if defined(WNT) && !defined(HAVE_NO_DLL)
|
||||
#if defined(_WIN32) && !defined(HAVE_NO_DLL)
|
||||
#ifndef __Draw_API
|
||||
# ifdef __Draw_DLL
|
||||
# define __Draw_API __declspec ( dllexport )
|
||||
@ -54,7 +54,7 @@ extern void Draw_Appli(Standard_Integer argc, char** argv,
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef WNT
|
||||
#ifndef _WIN32
|
||||
extern Draw_Viewer dout;
|
||||
extern Standard_Boolean Draw_Batch;
|
||||
#endif
|
||||
|
@ -27,9 +27,7 @@
|
||||
static Standard_Real MinimumStep = 1.e-3 ;
|
||||
static Standard_Real Ratio = 200.0 ;
|
||||
|
||||
//#ifdef WNT
|
||||
extern Draw_Viewer dout;
|
||||
//#endif
|
||||
|
||||
//=======================================================================
|
||||
// Function : Draw_Grid
|
||||
|
@ -198,7 +198,7 @@ static Standard_Integer CommandCmd
|
||||
cout << "An exception was caught " << E << endl;
|
||||
|
||||
if (cc && Draw::Atoi(cc)) {
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Tcl_Exit(0);
|
||||
#else
|
||||
Tcl_Eval(interp,"exit");
|
||||
@ -566,7 +566,7 @@ Draw_Interpretor::~Draw_Interpretor()
|
||||
#endif
|
||||
}
|
||||
#else
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Tcl_Exit(0);
|
||||
#endif
|
||||
#endif
|
||||
|
@ -53,7 +53,7 @@
|
||||
|
||||
#include <tcl.h>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
#include <sys/stat.h>
|
||||
#include <Draw_Window.hxx>
|
||||
|
||||
@ -78,7 +78,7 @@ Standard_IMPORT Standard_Boolean Draw_Interprete(const char* command); //for C30
|
||||
static FDraw_InitAppli theDraw_InitAppli; //pointer to the Draw_InitAppli
|
||||
#endif
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
//=======================================================================
|
||||
//NOTE: OCC11
|
||||
// On Windows NT, both console (UNIX-like) and windowed (classical on
|
||||
|
@ -30,7 +30,7 @@
|
||||
|
||||
typedef void (*FDraw_InitAppli)(Draw_Interpretor&);
|
||||
|
||||
#ifndef WNT
|
||||
#ifndef _WIN32
|
||||
Standard_EXPORT Standard_Integer _main_ (Standard_Integer argc,
|
||||
Standard_PCharacter argv[],
|
||||
const FDraw_InitAppli Draw_InitAppli);
|
||||
@ -49,7 +49,7 @@ Standard_EXPORT Standard_Integer _main_ (int argc,
|
||||
#endif
|
||||
|
||||
// Declarations of macros DRAW_MAIN to be used in executables instead of explicit main/WinMain
|
||||
#ifndef WNT
|
||||
#ifndef _WIN32
|
||||
// main()
|
||||
#define DRAW_MAIN int main (Standard_Integer argc, char* argv[])\
|
||||
{return _main_ (argc, argv, Draw_InitAppli);}
|
||||
|
@ -114,7 +114,7 @@ void Draw_Viewer::MakeView(const Standard_Integer id,
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
//=======================================================================
|
||||
//function : MakeView
|
||||
//purpose :
|
||||
@ -590,7 +590,7 @@ void Draw_Viewer::RepaintView (const Standard_Integer id) const
|
||||
}
|
||||
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
//=======================================================================
|
||||
//function : ResizeView
|
||||
//purpose : WNT re-drawing optimization
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include <Draw_SequenceOfDrawable3D.hxx>
|
||||
#include <Draw_Color.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
#if !defined(__Draw_API) && !defined(HAVE_NO_DLL)
|
||||
# ifdef __Draw_DLL
|
||||
@ -56,7 +56,7 @@ class Draw_Viewer {
|
||||
const Standard_Integer X, const Standard_Integer Y,
|
||||
const Standard_Integer W, const Standard_Integer H);
|
||||
// build a view on a given window
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
__Draw_API void MakeView (const Standard_Integer id,
|
||||
const char* typ,
|
||||
const Standard_Integer X, const Standard_Integer Y,
|
||||
@ -108,7 +108,7 @@ class Draw_Viewer {
|
||||
__Draw_API void ClearView (const Standard_Integer id) const;
|
||||
__Draw_API void RemoveView (const Standard_Integer id) ;
|
||||
__Draw_API void RepaintView (const Standard_Integer id) const;
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
__Draw_API void ResizeView (const Standard_Integer id) const;
|
||||
__Draw_API void UpdateView (const Standard_Integer id, const Standard_Boolean forced = Standard_False) const;
|
||||
#endif
|
||||
|
@ -15,7 +15,7 @@
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
// include windows.h first to have all definitions available
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
/** MainWindow.h
|
||||
*/
|
||||
/*\****************************************************/
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
|
||||
#define CLIENTWND 0
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
|
||||
#include <windows.h>
|
||||
#include <DrawRessource.h>
|
||||
|
@ -14,7 +14,7 @@
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
|
||||
// include windows.h first to have all definitions available
|
||||
#include <windows.h>
|
||||
|
@ -14,7 +14,7 @@
|
||||
commercial license or contractual agreement.
|
||||
*/
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
|
||||
#define APPCLASS "TDRAW"
|
||||
#define APPTITLE "Windows NT TDRAW"
|
||||
|
@ -39,7 +39,7 @@
|
||||
#include <TopoDS_Shape.hxx>
|
||||
#include <TopoDS_Vertex.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -42,7 +42,7 @@
|
||||
#include <gp_Ax3.hxx>
|
||||
#include <gp_Pln.hxx>
|
||||
#include <DrawTrSurf.hxx>
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
//=======================================================================
|
||||
|
@ -29,8 +29,6 @@
|
||||
#include <TColStd_Array1OfInteger.hxx>
|
||||
|
||||
#include <stdio.h>
|
||||
//#ifdef WNT
|
||||
//#endif
|
||||
//=======================================================================
|
||||
//function : DrawTrSurf_Triangulation
|
||||
//purpose :
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include <TColgp_Array1OfPnt2d.hxx>
|
||||
#include <TColStd_Array1OfInteger.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
|
@ -46,9 +46,6 @@
|
||||
#include <TCollection_ExtendedString.hxx>
|
||||
|
||||
#include <stdio.h>
|
||||
//pop pour NT
|
||||
//#if WNT
|
||||
//#endif
|
||||
//=======================================================================
|
||||
//function : Add
|
||||
//purpose :
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include <Expr_Division.hxx>
|
||||
|
||||
#ifndef __Expr_API
|
||||
# if defined(WNT) && !defined(HAVE_NO_DLL)
|
||||
# if defined(_WIN32) && !defined(HAVE_NO_DLL)
|
||||
# ifdef __Expr_DLL
|
||||
# define __Expr_API __declspec( dllexport )
|
||||
# else
|
||||
@ -34,7 +34,7 @@
|
||||
# endif // __Expr_DLL
|
||||
# else
|
||||
# define __Expr_API
|
||||
# endif // WNT
|
||||
# endif // _WIN32
|
||||
#endif // __Expr_API
|
||||
|
||||
//__Expr_API Handle(Expr_Sum) operator+(const Handle(Expr_GeneralExpression)& x,const Handle(Expr_GeneralExpression)& y);
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include <ExprIntrp_Analysis.hxx>
|
||||
|
||||
#ifndef _ExprIntrp_API
|
||||
# if !defined(WNT) || defined(__ExprIntrp_DLL) || defined(__Expr_DLL) || defined(__ExprIntrp_DLL) || defined(__math_DLL) || defined(__MathBase_DLL) || defined(__ElCLib_DLL) || defined(__ElSLib_DLL) || defined(__BSplCLib_DLL) || defined(__BSplSLib_DLL) || defined(__Smoothing_DLL) || defined(__SysBase_DLL) || defined(__Data_DLL) || defined(__PLib_DLL) || defined(__GeomAbs_DLL) || defined(__Poly_DLL) || defined(__CSLib_DLL) || defined(__Convert_DLL) || defined(__Bnd_DLL) || defined(__gp_DLL) || defined(__TColgp_DLL)
|
||||
# if !defined(_WIN32) || defined(__ExprIntrp_DLL) || defined(__Expr_DLL) || defined(__ExprIntrp_DLL) || defined(__math_DLL) || defined(__MathBase_DLL) || defined(__ElCLib_DLL) || defined(__ElSLib_DLL) || defined(__BSplCLib_DLL) || defined(__BSplSLib_DLL) || defined(__Smoothing_DLL) || defined(__SysBase_DLL) || defined(__Data_DLL) || defined(__PLib_DLL) || defined(__GeomAbs_DLL) || defined(__Poly_DLL) || defined(__CSLib_DLL) || defined(__Convert_DLL) || defined(__Bnd_DLL) || defined(__gp_DLL) || defined(__TColgp_DLL)
|
||||
# define __ExprIntrp_API Standard_EXPORT
|
||||
# define __ExprIntrp_APIEXTERN Standard_EXPORTEXTERN
|
||||
# else
|
||||
|
@ -20,11 +20,11 @@
|
||||
static TCollection_AsciiString ExprIntrp_curres;
|
||||
static int ExprIntrp_degree;
|
||||
|
||||
#ifndef WNT
|
||||
#ifndef _WIN32
|
||||
extern char* ExprIntrptext;
|
||||
#else
|
||||
extern "C" char* ExprIntrptext;
|
||||
#endif // WNT
|
||||
#endif // _WIN32
|
||||
|
||||
|
||||
extern "C" void ExprIntrp_SetResult()
|
||||
|
@ -28,10 +28,10 @@
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
# include <stdlib.h>
|
||||
# include <io.h>
|
||||
#endif /* WNT */
|
||||
#endif /* _MSC_VER */
|
||||
|
||||
|
||||
|
||||
|
@ -298,7 +298,7 @@ Handle(IGESData_IGESEntity) GeomToIGES_GeomSurface::TransferSurface(const Handle
|
||||
}
|
||||
}
|
||||
catch ( Standard_Failure ) {
|
||||
#ifdef DEB
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Warning: GeomToIGES_GeomSurface: can't trim bspline" << endl;
|
||||
cout << "Warning: Exception in Segment(): " ;
|
||||
Standard_Failure::Caught()->Print(cout);
|
||||
|
@ -36,7 +36,7 @@
|
||||
#include <GeomAbs_Shape.hxx>
|
||||
|
||||
#include <stdio.h>
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -39,7 +39,7 @@
|
||||
#include <TColStd_Array2OfReal.hxx>
|
||||
#include <Precision.hxx>
|
||||
#include <stdio.h>
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -64,9 +64,8 @@
|
||||
#include <GC_MakeSegment.hxx>
|
||||
#include <GC_MakeArcOfCircle.hxx>
|
||||
|
||||
//#ifdef WNT
|
||||
#include <stdio.h>
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
Standard_IMPORT Draw_Color DrawTrSurf_CurveColor(const Draw_Color);
|
||||
|
@ -130,7 +130,7 @@
|
||||
#include <GCPnts_UniformAbscissa.hxx>
|
||||
#include <DBRep.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include <TColgp_Array1OfPnt.hxx>
|
||||
#include <TColgp_Array1OfPnt2d.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
//=======================================================================
|
||||
|
@ -61,9 +61,12 @@
|
||||
#include <DrawTrSurf_BezierSurface.hxx>
|
||||
#include <DrawTrSurf_BSplineSurface.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#include <stdio.h>
|
||||
//#define strcasecmp strcmp Already defined
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include <Draw_Marker3D.hxx>
|
||||
|
||||
#include <stdio.h>
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -44,7 +44,7 @@
|
||||
#include <IntRes2d_IntersectionPoint.hxx>
|
||||
|
||||
#include <stdio.h>
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -60,8 +60,11 @@
|
||||
#include <AppDef_Array1OfMultiPointConstraint.hxx>
|
||||
#include <math_Vector.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -108,7 +108,7 @@
|
||||
#include <Approx_CurvilinearParameter.hxx>
|
||||
#include <Approx_CurveOnSurface.hxx>
|
||||
#include <Geom_BSplineSurface.hxx>
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include <Geom_BoundedCurve.hxx>
|
||||
#include <Geom_BoundedSurface.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#include <stdio.h>
|
||||
//#define strcasecmp strcmp Already defined
|
||||
#endif
|
||||
|
@ -82,10 +82,8 @@
|
||||
#include <DBRep.hxx>
|
||||
#include <Geom_Curve.hxx>
|
||||
|
||||
//#ifdef WNT
|
||||
#include <stdio.h>
|
||||
#ifdef _WIN32
|
||||
//#define strcasecmp strcmp Already defined
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include <TopoDS_Shape.hxx>
|
||||
|
||||
static Handle(HLRBRep_Algo) hider;
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -62,7 +62,7 @@
|
||||
|
||||
#include <stdio.h>
|
||||
//#include <ShapeCustom.hxx>
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#include <stdlib.h>
|
||||
#else
|
||||
#include <errno.h>
|
||||
|
@ -15,7 +15,7 @@
|
||||
#include <gp_Vec.hxx>
|
||||
#include <IntImp_ConstIsoparametric.hxx>
|
||||
|
||||
#if !defined(WNT) || defined(__ApproxInt_DLL) || defined(__IntImp_DLL) || defined(__IntWalk_DLL) || defined(__GeomInt_DLL) || defined(__IntPatch_DLL)
|
||||
#if !defined(_WIN32) || defined(__ApproxInt_DLL) || defined(__IntImp_DLL) || defined(__IntWalk_DLL) || defined(__GeomInt_DLL) || defined(__IntPatch_DLL)
|
||||
Standard_EXPORTEXTERN const IntImp_ConstIsoparametric *ChoixRef;
|
||||
#else
|
||||
Standard_IMPORT const IntImp_ConstIsoparametric *ChoixRef;
|
||||
|
@ -377,6 +377,6 @@ namespace {
|
||||
return 1;
|
||||
}
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning ( default : 4101 )
|
||||
#endif
|
||||
|
@ -1545,6 +1545,6 @@ Standard_Integer AdaptiveDiscret (const Standard_Integer iDiscret,
|
||||
}
|
||||
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning ( default : 4101 )
|
||||
#endif
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include <Standard_Transient.hxx>
|
||||
#include <TCollection_HAsciiString.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
#include <OSD_Exception.hxx>
|
||||
#else
|
||||
#include <OSD_Signal.hxx>
|
||||
@ -49,7 +49,7 @@ static void raisecheck (Handle(Interface_Check)& ach)
|
||||
sprintf (mess,"** Exception Raised during Check : %s **",
|
||||
afail->DynamicType()->Name());
|
||||
ach->AddFail(mess);
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
if (afail->IsKind(STANDARD_TYPE(OSD_Exception)))
|
||||
#else
|
||||
if (afail->IsKind(STANDARD_TYPE(OSD_Signal)))
|
||||
|
@ -36,7 +36,7 @@
|
||||
#include <Standard_Transient.hxx>
|
||||
#include <Standard_TypeMismatch.hxx>
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
#include <OSD_Exception.hxx>
|
||||
#else
|
||||
#include <OSD_Signal.hxx>
|
||||
@ -385,7 +385,7 @@ void Interface_FileReaderTool::LoadModel
|
||||
num0 = thereader->FindNextRecord(num); //:g9 abv 28 May 98: tr8_as2_ug.stp - infinite cycle: (0);
|
||||
|
||||
Handle(Standard_Failure) afail = Standard_Failure::Caught();
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
if (afail.IsNull() || afail->IsKind(STANDARD_TYPE(OSD_Exception))) ierr = 2;
|
||||
#else
|
||||
if (afail.IsNull() || afail->IsKind(STANDARD_TYPE(OSD_Signal))) ierr = 2;
|
||||
|
@ -317,7 +317,7 @@ Standard_Boolean LDOMBasicString::GetInteger (Standard_Integer& aResult) const
|
||||
}
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
#ifndef WNT
|
||||
#ifndef _MSC_VER
|
||||
//=======================================================================
|
||||
// Debug Function for DBX: use "print -p <Variable> or pp <Variable>"
|
||||
//=======================================================================
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include <TCollection_ExtendedString.hxx>
|
||||
|
||||
#include <fcntl.h>
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#include <io.h>
|
||||
#else
|
||||
#include <unistd.h>
|
||||
@ -63,7 +63,7 @@ inline
|
||||
#ifdef LDOM_PARSER_TRACE
|
||||
static FILE * ff = NULL;
|
||||
TCollection_AsciiString aTraceFileName;
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
aTraceFileName = TCollection_AsciiString (getenv("TEMP")) + "\\ldom.trace";
|
||||
#else
|
||||
aTraceFileName = "/tmp/ldom.trace";
|
||||
|
@ -45,7 +45,7 @@ const LDOM_BasicNode * LDOM_BasicNode::GetSibling () const
|
||||
}
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
#ifndef WNT
|
||||
#ifndef _MSC_VER
|
||||
//=======================================================================
|
||||
// Debug Function for DBX: use "print -p <Variable> or pp <Variable>"
|
||||
//=======================================================================
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#ifdef WNT
|
||||
#ifdef _MSC_VER
|
||||
#include <io.h>
|
||||
#else
|
||||
#include <unistd.h>
|
||||
|
@ -409,7 +409,7 @@ LDOM_XmlWriter& LDOM_XmlWriter::operator<< (const LDOM_Node& theNodeToWrite)
|
||||
break;
|
||||
}
|
||||
default:
|
||||
#ifndef WNT
|
||||
#ifndef _MSC_VER
|
||||
cerr << "Unrecognized node type = "
|
||||
<< (long)theNodeToWrite.getNodeType() << endl
|
||||
#endif
|
||||
|
@ -21,36 +21,19 @@
|
||||
//function : HashCode
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
//#ifndef WNT
|
||||
//inline static Standard_Integer MAT2d_MapBiIntHasher::HashCode
|
||||
//(const MAT2d_BiInt& Key1, const Standard_Integer upper)
|
||||
//{
|
||||
// return TColStd_MapIntegerHasher::HashCode(Key1.FirstIndex(),upper);
|
||||
//}
|
||||
//#else
|
||||
inline Standard_Integer MAT2d_MapBiIntHasher::HashCode
|
||||
(const MAT2d_BiInt& Key1, const Standard_Integer upper)
|
||||
{
|
||||
return TColStd_MapIntegerHasher::HashCode(Key1.FirstIndex(),upper);
|
||||
}
|
||||
//#endif
|
||||
|
||||
//=======================================================================
|
||||
//function : IsEqual
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
//#ifndef WNT
|
||||
//inline static Standard_Boolean MAT2d_MapBiIntHasher::IsEqual
|
||||
// (const MAT2d_BiInt& Key1,
|
||||
// const MAT2d_BiInt& Key2)
|
||||
//{
|
||||
// return (Key1 == Key2);
|
||||
//}
|
||||
//#else
|
||||
inline Standard_Boolean MAT2d_MapBiIntHasher::IsEqual
|
||||
(const MAT2d_BiInt& Key1,
|
||||
const MAT2d_BiInt& Key2)
|
||||
{
|
||||
return (Key1 == Key2);
|
||||
}
|
||||
//#endif
|
||||
|
@ -84,7 +84,7 @@
|
||||
#include <stdio.h>
|
||||
//epa Memory leaks test
|
||||
//OAN: for triepoints
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_IMPORT Draw_Viewer dout;
|
||||
#endif
|
||||
|
||||
|
@ -161,7 +161,7 @@ void MeshVS_TextPrsBuilder::Build ( const Handle(Prs3d_Presentation)& Prs,
|
||||
Handle (Graphic3d_Group) aTextGroup = Prs3d_Root::CurrentGroup ( Prs );
|
||||
|
||||
Quantity_Color AColor = Quantity_NOC_YELLOW;
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
Standard_CString AFont = "Courier New";
|
||||
#else
|
||||
Standard_CString AFont = "Courier";
|
||||
|
@ -63,7 +63,7 @@ Standard_Boolean Message_MsgFile::Load (const Standard_CString theDirName,
|
||||
{
|
||||
TCollection_AsciiString aFileName = aDirList.Token (" \t\n", i);
|
||||
if (aFileName.IsEmpty()) break;
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
aFileName += '\\';
|
||||
#else
|
||||
aFileName += '/';
|
||||
|
@ -68,7 +68,7 @@ Standard_Boolean OSD::CStringToReal(const Standard_CString aString,
|
||||
//purpose : Cause the process to sleep during a amount of seconds
|
||||
//=======================================================================
|
||||
|
||||
#ifdef WNT
|
||||
#ifdef _WIN32
|
||||
# include <Windows.h>
|
||||
#if !defined(__CYGWIN32__) && !defined(__MINGW32__)
|
||||
//# include <Mapiwin.h>
|
||||
@ -214,7 +214,7 @@ Standard_Integer OSD::AvailableMemory()
|
||||
# define SIZE_MAX 0x7fffffff
|
||||
# elif defined(__osf__) || defined(DECOSF1)
|
||||
# define SIZE_MAX 0x10000000000
|
||||
# elif defined(WNT)
|
||||
# elif defined(_WIN32)
|
||||
# define SIZE_MAX 0x7ffdefff
|
||||
# else
|
||||
# define SIZE_MAX 0xffffffff
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user