Files
UnrealEngineUWP/Engine/Source/Runtime/Windows/WindowsPlatformFeatures/Public/WindowsPlatformFeatures.h
David Harvey 09d0d26709 Windows platform extensions extends the normal Windows platform features module.
#jira UE-179187
#rnx
#rb Eric.McDaniel
#preflight 64229b01c42c7fd1cbcdaf2a

[CL 24815529 by David Harvey in ue5-main branch]
2023-03-28 03:57:05 -04:00

23 lines
461 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "PlatformFeatures.h"
class WINDOWSPLATFORMFEATURES_API FWindowsPlatformFeaturesModule : public IPlatformFeaturesModule
{
public:
/** Creates a new instance of the audio device implemented by the module. */
FWindowsPlatformFeaturesModule();
virtual IVideoRecordingSystem* GetVideoRecordingSystem() override;
private:
void StartupModule() override;
};