Move the E_NOTFOUND define out of wasapi.h

This commit is contained in:
Jacques Heunis 2016-06-04 23:09:11 +02:00
parent 4b95b79f27
commit 17dc688ddc
2 changed files with 3 additions and 2 deletions

View file

@ -25,6 +25,9 @@
#include <stdio.h>
// Some HRESULT values are not defined by the windows headers
#define E_NOTFOUND 0x80070490
#ifdef __cplusplus
// In C++ mode, IsEqualGUID() takes its arguments by reference
#define IS_EQUAL_GUID(a, b) IsEqualGUID(*(a), *(b))

View file

@ -24,8 +24,6 @@
#include <audiosessiontypes.h>
#include <audiopolicy.h>
#define E_NOTFOUND 0x80070490
struct SoundIoPrivate;
int soundio_wasapi_init(struct SoundIoPrivate *si);