DirectSoundDeviceFinder: Remove `__attribute__((stdcall))`
This commit is contained in:
parent
391b7476b3
commit
fa1fbca7dc
|
@ -40,12 +40,8 @@ class DirectSoundDeviceFinder : public DeviceFinder {
|
||||||
QList<Device> devices;
|
QList<Device> devices;
|
||||||
};
|
};
|
||||||
|
|
||||||
static BOOL CALLBACK EnumerateCallback(LPGUID guid, LPCSTR description, LPCSTR module, LPVOID state_voidptr)
|
static BOOL CALLBACK EnumerateCallback(LPGUID guid, LPCSTR description, LPCSTR module, LPVOID state_voidptr);
|
||||||
#ifdef _MSC_VER
|
|
||||||
;
|
|
||||||
#else
|
|
||||||
__attribute__((stdcall));
|
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // DIRECTSOUNDDEVICEFINDER_H
|
#endif // DIRECTSOUNDDEVICEFINDER_H
|
||||||
|
|
Loading…
Reference in New Issue