Files
UnrealEngine/Engine/Plugins/Media/ElectraUtil/Source/ElectraHTTPStream/Private/Generic/GenericElectraHTTPStream.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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