Changeset 89089 in vbox
- Timestamp:
- May 17, 2021 10:43:13 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144429
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/win/audioclient.h
r88626 r89089 32 32 #ifdef _MSC_VER 33 33 # pragma warning(push) 34 # pragma warning(disable:4668) /* ks.h(1978): warning C4668: '_WIN64' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif' [SDK 7.1] */ 34 35 # if _MSC_VER >= 1900 /*RT_MSC_VER_VC140*/ 35 36 # ifdef __cplusplus -
trunk/include/iprt/win/endpointvolume.h
r84406 r89089 32 32 #ifdef _MSC_VER 33 33 # pragma warning(push) 34 # pragma warning(disable: 4201) 34 # pragma warning(disable:4201) 35 # pragma warning(disable:4668) /* ks.h(1978): warning C4668: '_WIN64' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif' [SDK 7.1] */ 35 36 # if _MSC_VER >= 1900 /*RT_MSC_VER_VC140*/ 36 37 # pragma warning(disable: 4091) /* v7.1\include\ksmedia.h(4356): warning C4091: 'typedef ': ignored on left of '<unnamed-enum-KSEVENT_DYNAMIC_FORMAT_CHANGE>' when no variable is declared */ -
trunk/src/VBox/Devices/Audio/DrvHostAudioDSound.cpp
r89057 r89089 25 25 #include <iprt/win/windows.h> 26 26 #include <dsound.h> 27 #include < Mmdeviceapi.h>27 #include <mmdeviceapi.h> 28 28 #include <functiondiscoverykeys_devpkey.h> 29 29 -
trunk/src/VBox/Devices/Audio/DrvHostAudioDSoundMMNotifClient.h
r88853 r89089 24 24 #include <iprt/critsect.h> 25 25 #include <iprt/win/windows.h> 26 27 /* Should fix warning in include\ks.h. */ 28 #ifndef _WIN64 29 # ifdef RT_ARCH_X86 30 # define _WIN64 1 31 # else 32 # define _WIN64 0 33 # endif 34 #endif 35 36 #include <Mmdeviceapi.h> 26 #include <mmdeviceapi.h> 37 27 38 28 #include <VBox/vmm/pdmaudioifs.h> … … 83 73 /** @} */ 84 74 }; 75 85 76 #endif /* !VBOX_INCLUDED_SRC_Audio_DrvHostAudioDSoundMMNotifClient_h */ 86 77 -
trunk/src/VBox/Devices/Audio/DrvHostAudioWasApi.cpp
r89084 r89089 23 23 /*#define INITGUID - defined in VBoxhostAudioDSound.cpp already */ 24 24 #include <VBox/log.h> 25 26 /* Should fix warning in include\ks.h. */27 #ifndef _WIN6428 # ifdef RT_ARCH_X8629 # define _WIN64 130 # else31 # define _WIN64 032 # endif33 #endif34 35 25 #include <iprt/win/windows.h> 36 26 #include <Mmdeviceapi.h> … … 3159 3149 PDM_DRVREG_VERSION 3160 3150 }; 3151
Note:
See TracChangeset
for help on using the changeset viewer.