Files
UnrealEngine/Engine/Plugins/Media/ElectraUtil/Source/ElectraHTTPStream/Private/Generic/GenericElectraHTTPStream.h
2025-05-18 13:04:45 +08:00

24 lines
542 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Templates/SharedPointer.h"
#include "ParameterDictionary.h"
#define UE_API ELECTRAHTTPSTREAM_API
class IElectraHTTPStream;
class FPlatformElectraHTTPStreamGeneric
{
public:
static UE_API void Startup();
static UE_API void Shutdown();
static UE_API TSharedPtr<IElectraHTTPStream, ESPMode::ThreadSafe> Create(const Electra::FParamDict& InOptions);
};
typedef FPlatformElectraHTTPStreamGeneric FPlatformElectraHTTPStream;
#undef UE_API