Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

37 lines
860 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Modules/ModuleManager.h"
#include "HAL/Platform.h"
#include "Windows/AllowWindowsPlatformTypes.h"
THIRD_PARTY_INCLUDES_START
// Linkage to define Windows PKEY GUIDs included by Notification/DeviceInfoCache, otherwise they are unresolved extern.
#include <initguid.h>
THIRD_PARTY_INCLUDES_END
#include "Windows/HideWindowsPlatformTypes.h"
#include "WindowsMMNotificationClient.h"
#include "WindowsMMDeviceInfoCache.h"
#include "WindowsMMDeviceEnumerationLog.h"
DEFINE_LOG_CATEGORY(LogAudioEnumeration);
namespace Audio
{
class FWindowsMMDeviceEnumerationModule : public IModuleInterface
{
public:
virtual void StartupModule() override
{
}
virtual void ShutdownModule() override
{
}
};
}
IMPLEMENT_MODULE(Audio::FWindowsMMDeviceEnumerationModule, WindowsMMDeviceEnumeration)