diff --git a/cnc-ddraw.sln b/cnc-ddraw.sln index ab7f479..1b867f0 100644 --- a/cnc-ddraw.sln +++ b/cnc-ddraw.sln @@ -11,7 +11,6 @@ Global DebugLog|x86 = DebugLog|x86 DebugLogMini|x86 = DebugLogMini|x86 Release|x86 = Release|x86 - ReleaseWin2000|x86 = ReleaseWin2000|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {96094551-5D52-4EBD-BE4C-5291A03507FC}.Debug|x86.ActiveCfg = Debug|Win32 @@ -22,8 +21,6 @@ Global {96094551-5D52-4EBD-BE4C-5291A03507FC}.DebugLogMini|x86.Build.0 = DebugLogMini|Win32 {96094551-5D52-4EBD-BE4C-5291A03507FC}.Release|x86.ActiveCfg = Release|Win32 {96094551-5D52-4EBD-BE4C-5291A03507FC}.Release|x86.Build.0 = Release|Win32 - {96094551-5D52-4EBD-BE4C-5291A03507FC}.ReleaseWin2000|x86.ActiveCfg = ReleaseWin2000|Win32 - {96094551-5D52-4EBD-BE4C-5291A03507FC}.ReleaseWin2000|x86.Build.0 = ReleaseWin2000|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/cnc-ddraw.vcxproj b/cnc-ddraw.vcxproj index 924f32f..8a22c6a 100644 --- a/cnc-ddraw.vcxproj +++ b/cnc-ddraw.vcxproj @@ -13,10 +13,6 @@ Debug Win32 - - ReleaseWin2000 - Win32 - Release Win32 @@ -113,9 +109,7 @@ - - - + cnc_ddraw 7.0 @@ -135,13 +129,6 @@ true MultiByte - - DynamicLibrary - false - v141_xp - true - MultiByte - DynamicLibrary false @@ -157,9 +144,7 @@ MultiByte - - - + @@ -168,9 +153,6 @@ - - - @@ -190,12 +172,6 @@ false ddraw - - $(SolutionDir)bin\ReleaseWin2000\ - $(SolutionDir)bin\ReleaseWin2000\ - false - ddraw - $(SolutionDir)bin\DebugLog\ $(SolutionDir)bin\DebugLog\ @@ -258,37 +234,6 @@ if exist "$(LocalDebuggerCommand)" if exist "$(LocalDebuggerWorkingDirectory)" - - - Level2 - - - MaxSpeed - true - true - _CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - inc;src\detours - NoExtensions - - - Windows - true - true - winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) - ddraw.def - - - -if exist "$(LocalDebuggerCommand)" if exist "$(LocalDebuggerWorkingDirectory)" ( - copy "$(TargetPath)" "$(LocalDebuggerWorkingDirectory)$(TargetFileName)" -) - - - - /safeseh %(AdditionalOptions) - - Level2 @@ -344,7 +289,5 @@ if NOT "$(LocalDebuggerWorkingDirectory)" == "$(ProjectDir)" if exist "$(LocalDe - - - + \ No newline at end of file diff --git a/src/win2000.asm b/src/win2000.asm deleted file mode 100644 index 5995502..0000000 --- a/src/win2000.asm +++ /dev/null @@ -1,15 +0,0 @@ -.model flat - -.data -__imp__EncodePointer@4 dd dummy -__imp__DecodePointer@4 dd dummy -EXTERNDEF __imp__EncodePointer@4 : DWORD -EXTERNDEF __imp__DecodePointer@4 : DWORD - -.code -dummy proc -mov eax, [esp+4] -ret 4 -dummy endp - -end