Define NTDDI_VERSION,_WIN32_WINNT; remove GetOverlappedResultEx

- Ensures that only Vista+ DDI/API's are used
- Project should now run on Win 7
This commit is contained in:
Bill Zissimopoulos
2016-07-27 16:14:59 -07:00
parent 0b65bc7e01
commit 0e2f46dc90
4 changed files with 106 additions and 81 deletions

View File

@ -10,4 +10,9 @@
<MyVersion>0.15.$(MyBuildNumber)</MyVersion>
<MyVersionWithCommas>$(MyVersion.Replace('.',',')),0</MyVersionWithCommas>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<PreprocessorDefinitions>NTDDI_VERSION=0x06000000;_WIN32_WINNT=0x0600</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
</Project>