mirror of
https://github.com/mpv-player/mpv
synced 2024-12-12 01:46:16 +00:00
f61b8b312d
Put the Vista+ (_WIN32_WINNT) and the COM C (COBJMACROS) defines into the build system, instead of defining them over and over in the code.
18 lines
362 B
C
18 lines
362 B
C
#include <malloc.h>
|
|
#include <stdlib.h>
|
|
#include <process.h>
|
|
#include <initguid.h>
|
|
#include <audioclient.h>
|
|
#include <endpointvolume.h>
|
|
#include <mmdeviceapi.h>
|
|
#include <avrt.h>
|
|
const GUID *check1[] = {
|
|
&IID_IAudioClient,
|
|
&IID_IAudioRenderClient,
|
|
&IID_IAudioClient,
|
|
&IID_IAudioEndpointVolume,
|
|
};
|
|
int main(void) {
|
|
return 0;
|
|
}
|