https://git.reactos.org/?p=reactos.git;a=commitdiff;h=511134ec9108d913a6d95e73043f78eed76fe307
commit 511134ec9108d913a6d95e73043f78eed76fe307 Author: Serge Gautherie <[email protected]> AuthorDate: Thu Nov 26 06:59:36 2020 +0100 Commit: Jérôme Gardou <[email protected]> CommitDate: Mon Feb 1 09:43:31 2021 +0100 [CMIPCI] Compile it as NT5.2, not NT6.0 Addendum to ba2ab59 (r61334). --- drivers/wdm/audio/drivers/CMIDriver/CMakeLists.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/wdm/audio/drivers/CMIDriver/CMakeLists.txt b/drivers/wdm/audio/drivers/CMIDriver/CMakeLists.txt index 564c5e42212..eda3493b308 100644 --- a/drivers/wdm/audio/drivers/CMIDriver/CMakeLists.txt +++ b/drivers/wdm/audio/drivers/CMIDriver/CMakeLists.txt @@ -3,9 +3,10 @@ add_subdirectory(cmicontrol) add_subdirectory(cpl) -# for WaveRT support -remove_definitions(-D_WIN32_WINNT=0x502) -add_definitions(-D_WIN32_WINNT=0x600) +# For (NT6+) WaveRT support. +# See WAVERT define in debug.hpp. +# remove_definitions(-D_WIN32_WINNT=0x502) +# add_definitions(-D_WIN32_WINNT=0x600) list(APPEND SOURCE adapter.cpp
