DirectSoundDeviceFinder: Remove `__attribute__((stdcall))`

This commit is contained in:
Jonas Kvinge 2022-08-14 22:14:53 +02:00
parent 391b7476b3
commit fa1fbca7dc
1 changed files with 2 additions and 6 deletions

View File

@ -40,12 +40,8 @@ class DirectSoundDeviceFinder : public DeviceFinder {
QList<Device> devices;
};
static BOOL CALLBACK EnumerateCallback(LPGUID guid, LPCSTR description, LPCSTR module, LPVOID state_voidptr)
#ifdef _MSC_VER
;
#else
__attribute__((stdcall));
#endif
static BOOL CALLBACK EnumerateCallback(LPGUID guid, LPCSTR description, LPCSTR module, LPVOID state_voidptr);
};
#endif // DIRECTSOUNDDEVICEFINDER_H