Files
DedicatedServerCourse/Intermediate/Build/Win64/FPSTemplateEditor/Inc/SessionMessages/UHT/SessionServiceMessages.gen.cpp

484 lines
36 KiB
C++
Raw Normal View History

2026-01-28 19:08:51 -05:00
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "SessionServiceMessages.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
static_assert(!UE_WITH_CONSTINIT_UOBJECT, "This generated code can only be compiled with !UE_WITH_CONSTINIT_OBJECT");
void EmptyLinkFunctionForGeneratedCodeSessionServiceMessages() {}
// ********** Begin Cross Module References ********************************************************
COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FGuid();
SESSIONMESSAGES_API UScriptStruct* Z_Construct_UScriptStruct_FSessionServiceLog();
SESSIONMESSAGES_API UScriptStruct* Z_Construct_UScriptStruct_FSessionServiceLogSubscribe();
SESSIONMESSAGES_API UScriptStruct* Z_Construct_UScriptStruct_FSessionServiceLogUnsubscribe();
SESSIONMESSAGES_API UScriptStruct* Z_Construct_UScriptStruct_FSessionServicePing();
SESSIONMESSAGES_API UScriptStruct* Z_Construct_UScriptStruct_FSessionServicePong();
UPackage* Z_Construct_UPackage__Script_SessionMessages();
// ********** End Cross Module References **********************************************************
// ********** Begin ScriptStruct FSessionServicePing ***********************************************
struct Z_Construct_UScriptStruct_FSessionServicePing_Statics
{
static inline consteval int32 GetStructSize() { return sizeof(FSessionServicePing); }
static inline consteval int16 GetStructAlignment() { return alignof(FSessionServicePing); }
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
{ "Comment", "/**\n * Implements a message that is published to discover existing application sessions.\n */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Implements a message that is published to discover existing application sessions." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserName_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** The name of the user who sent this ping. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "The name of the user who sent this ping." },
};
#endif // WITH_METADATA
// ********** Begin ScriptStruct FSessionServicePing constinit property declarations ***************
static const UECodeGen_Private::FStrPropertyParams NewProp_UserName;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End ScriptStruct FSessionServicePing constinit property declarations *****************
static void* NewStructOps()
{
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FSessionServicePing>();
}
static const UECodeGen_Private::FStructParams StructParams;
}; // struct Z_Construct_UScriptStruct_FSessionServicePing_Statics
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_FSessionServicePing;
class UScriptStruct* FSessionServicePing::StaticStruct()
{
if (!Z_Registration_Info_UScriptStruct_FSessionServicePing.OuterSingleton)
{
Z_Registration_Info_UScriptStruct_FSessionServicePing.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FSessionServicePing, (UObject*)Z_Construct_UPackage__Script_SessionMessages(), TEXT("SessionServicePing"));
}
return Z_Registration_Info_UScriptStruct_FSessionServicePing.OuterSingleton;
}
// ********** Begin ScriptStruct FSessionServicePing Property Definitions **************************
const UECodeGen_Private::FStrPropertyParams Z_Construct_UScriptStruct_FSessionServicePing_Statics::NewProp_UserName = { "UserName", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSessionServicePing, UserName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserName_MetaData), NewProp_UserName_MetaData) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FSessionServicePing_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServicePing_Statics::NewProp_UserName,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSessionServicePing_Statics::PropPointers) < 2048);
// ********** End ScriptStruct FSessionServicePing Property Definitions ****************************
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FSessionServicePing_Statics::StructParams = {
(UObject* (*)())Z_Construct_UPackage__Script_SessionMessages,
nullptr,
&NewStructOps,
"SessionServicePing",
Z_Construct_UScriptStruct_FSessionServicePing_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSessionServicePing_Statics::PropPointers),
sizeof(FSessionServicePing),
alignof(FSessionServicePing),
RF_Public|RF_Transient|RF_MarkAsNative,
EStructFlags(0x00000001),
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSessionServicePing_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FSessionServicePing_Statics::Struct_MetaDataParams)
};
UScriptStruct* Z_Construct_UScriptStruct_FSessionServicePing()
{
if (!Z_Registration_Info_UScriptStruct_FSessionServicePing.InnerSingleton)
{
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_FSessionServicePing.InnerSingleton, Z_Construct_UScriptStruct_FSessionServicePing_Statics::StructParams);
}
return CastChecked<UScriptStruct>(Z_Registration_Info_UScriptStruct_FSessionServicePing.InnerSingleton);
}
// ********** End ScriptStruct FSessionServicePing *************************************************
// ********** Begin ScriptStruct FSessionServicePong ***********************************************
struct Z_Construct_UScriptStruct_FSessionServicePong_Statics
{
static inline consteval int32 GetStructSize() { return sizeof(FSessionServicePong); }
static inline consteval int16 GetStructAlignment() { return alignof(FSessionServicePong); }
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
{ "Comment", "/**\n * Implements a message that is published in response to FSessionServicePing.\n */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Implements a message that is published in response to FSessionServicePing." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Authorized_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Indicates whether the pinging user is authorized to interact with this session. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Indicates whether the pinging user is authorized to interact with this session." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BuildDate_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Holds the application's build date. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Holds the application's build date." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DeviceName_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Holds the name of the device that the application is running on. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Holds the name of the device that the application is running on." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InstanceId_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Holds the application's instance identifier. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Holds the application's instance identifier." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InstanceName_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Holds the application's instance name. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Holds the application's instance name." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlatformName_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Holds the name of the platform that the application is running on. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Holds the name of the platform that the application is running on." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SessionId_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Holds the identifier of the session that the application belongs to. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Holds the identifier of the session that the application belongs to." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SessionName_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Holds the user defined name of the session. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Holds the user defined name of the session." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SessionOwner_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Holds the name of the user that started the session. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Holds the name of the user that started the session." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Standalone_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Indicates whether the application is the only one in that session. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Indicates whether the application is the only one in that session." },
};
#endif // WITH_METADATA
// ********** Begin ScriptStruct FSessionServicePong constinit property declarations ***************
static void NewProp_Authorized_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_Authorized;
static const UECodeGen_Private::FStrPropertyParams NewProp_BuildDate;
static const UECodeGen_Private::FStrPropertyParams NewProp_DeviceName;
static const UECodeGen_Private::FStructPropertyParams NewProp_InstanceId;
static const UECodeGen_Private::FStrPropertyParams NewProp_InstanceName;
static const UECodeGen_Private::FStrPropertyParams NewProp_PlatformName;
static const UECodeGen_Private::FStructPropertyParams NewProp_SessionId;
static const UECodeGen_Private::FStrPropertyParams NewProp_SessionName;
static const UECodeGen_Private::FStrPropertyParams NewProp_SessionOwner;
static void NewProp_Standalone_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_Standalone;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End ScriptStruct FSessionServicePong constinit property declarations *****************
static void* NewStructOps()
{
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FSessionServicePong>();
}
static const UECodeGen_Private::FStructParams StructParams;
}; // struct Z_Construct_UScriptStruct_FSessionServicePong_Statics
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_FSessionServicePong;
class UScriptStruct* FSessionServicePong::StaticStruct()
{
if (!Z_Registration_Info_UScriptStruct_FSessionServicePong.OuterSingleton)
{
Z_Registration_Info_UScriptStruct_FSessionServicePong.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FSessionServicePong, (UObject*)Z_Construct_UPackage__Script_SessionMessages(), TEXT("SessionServicePong"));
}
return Z_Registration_Info_UScriptStruct_FSessionServicePong.OuterSingleton;
}
// ********** Begin ScriptStruct FSessionServicePong Property Definitions **************************
void Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_Authorized_SetBit(void* Obj)
{
((FSessionServicePong*)Obj)->Authorized = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_Authorized = { "Authorized", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FSessionServicePong), &Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_Authorized_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Authorized_MetaData), NewProp_Authorized_MetaData) };
const UECodeGen_Private::FStrPropertyParams Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_BuildDate = { "BuildDate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSessionServicePong, BuildDate), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BuildDate_MetaData), NewProp_BuildDate_MetaData) };
const UECodeGen_Private::FStrPropertyParams Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_DeviceName = { "DeviceName", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSessionServicePong, DeviceName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DeviceName_MetaData), NewProp_DeviceName_MetaData) };
const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_InstanceId = { "InstanceId", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSessionServicePong, InstanceId), Z_Construct_UScriptStruct_FGuid, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InstanceId_MetaData), NewProp_InstanceId_MetaData) };
const UECodeGen_Private::FStrPropertyParams Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_InstanceName = { "InstanceName", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSessionServicePong, InstanceName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InstanceName_MetaData), NewProp_InstanceName_MetaData) };
const UECodeGen_Private::FStrPropertyParams Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_PlatformName = { "PlatformName", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSessionServicePong, PlatformName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlatformName_MetaData), NewProp_PlatformName_MetaData) };
const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_SessionId = { "SessionId", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSessionServicePong, SessionId), Z_Construct_UScriptStruct_FGuid, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SessionId_MetaData), NewProp_SessionId_MetaData) };
const UECodeGen_Private::FStrPropertyParams Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_SessionName = { "SessionName", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSessionServicePong, SessionName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SessionName_MetaData), NewProp_SessionName_MetaData) };
const UECodeGen_Private::FStrPropertyParams Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_SessionOwner = { "SessionOwner", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSessionServicePong, SessionOwner), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SessionOwner_MetaData), NewProp_SessionOwner_MetaData) };
void Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_Standalone_SetBit(void* Obj)
{
((FSessionServicePong*)Obj)->Standalone = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_Standalone = { "Standalone", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FSessionServicePong), &Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_Standalone_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Standalone_MetaData), NewProp_Standalone_MetaData) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FSessionServicePong_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_Authorized,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_BuildDate,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_DeviceName,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_InstanceId,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_InstanceName,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_PlatformName,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_SessionId,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_SessionName,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_SessionOwner,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewProp_Standalone,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSessionServicePong_Statics::PropPointers) < 2048);
// ********** End ScriptStruct FSessionServicePong Property Definitions ****************************
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FSessionServicePong_Statics::StructParams = {
(UObject* (*)())Z_Construct_UPackage__Script_SessionMessages,
nullptr,
&NewStructOps,
"SessionServicePong",
Z_Construct_UScriptStruct_FSessionServicePong_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSessionServicePong_Statics::PropPointers),
sizeof(FSessionServicePong),
alignof(FSessionServicePong),
RF_Public|RF_Transient|RF_MarkAsNative,
EStructFlags(0x00000001),
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSessionServicePong_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FSessionServicePong_Statics::Struct_MetaDataParams)
};
UScriptStruct* Z_Construct_UScriptStruct_FSessionServicePong()
{
if (!Z_Registration_Info_UScriptStruct_FSessionServicePong.InnerSingleton)
{
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_FSessionServicePong.InnerSingleton, Z_Construct_UScriptStruct_FSessionServicePong_Statics::StructParams);
}
return CastChecked<UScriptStruct>(Z_Registration_Info_UScriptStruct_FSessionServicePong.InnerSingleton);
}
// ********** End ScriptStruct FSessionServicePong *************************************************
// ********** Begin ScriptStruct FSessionServiceLog ************************************************
struct Z_Construct_UScriptStruct_FSessionServiceLog_Statics
{
static inline consteval int32 GetStructSize() { return sizeof(FSessionServiceLog); }
static inline consteval int16 GetStructAlignment() { return alignof(FSessionServiceLog); }
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
{ "Comment", "/**\n * Implements a message that contains a console log entry.\n */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Implements a message that contains a console log entry." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Category_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Holds the log message category. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Holds the log message category." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Data_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Holds the log message data. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Holds the log message data." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InstanceId_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Holds the application instance identifier. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Holds the application instance identifier." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TimeSeconds_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Holds the time in seconds since the application was started. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Holds the time in seconds since the application was started." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Verbosity_MetaData[] = {
{ "Category", "Message" },
{ "Comment", "/** Holds the log message's verbosity level. */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Holds the log message's verbosity level." },
};
#endif // WITH_METADATA
// ********** Begin ScriptStruct FSessionServiceLog constinit property declarations ****************
static const UECodeGen_Private::FNamePropertyParams NewProp_Category;
static const UECodeGen_Private::FStrPropertyParams NewProp_Data;
static const UECodeGen_Private::FStructPropertyParams NewProp_InstanceId;
static const UECodeGen_Private::FDoublePropertyParams NewProp_TimeSeconds;
static const UECodeGen_Private::FBytePropertyParams NewProp_Verbosity;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End ScriptStruct FSessionServiceLog constinit property declarations ******************
static void* NewStructOps()
{
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FSessionServiceLog>();
}
static const UECodeGen_Private::FStructParams StructParams;
}; // struct Z_Construct_UScriptStruct_FSessionServiceLog_Statics
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_FSessionServiceLog;
class UScriptStruct* FSessionServiceLog::StaticStruct()
{
if (!Z_Registration_Info_UScriptStruct_FSessionServiceLog.OuterSingleton)
{
Z_Registration_Info_UScriptStruct_FSessionServiceLog.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FSessionServiceLog, (UObject*)Z_Construct_UPackage__Script_SessionMessages(), TEXT("SessionServiceLog"));
}
return Z_Registration_Info_UScriptStruct_FSessionServiceLog.OuterSingleton;
}
// ********** Begin ScriptStruct FSessionServiceLog Property Definitions ***************************
const UECodeGen_Private::FNamePropertyParams Z_Construct_UScriptStruct_FSessionServiceLog_Statics::NewProp_Category = { "Category", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSessionServiceLog, Category), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Category_MetaData), NewProp_Category_MetaData) };
const UECodeGen_Private::FStrPropertyParams Z_Construct_UScriptStruct_FSessionServiceLog_Statics::NewProp_Data = { "Data", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSessionServiceLog, Data), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Data_MetaData), NewProp_Data_MetaData) };
const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FSessionServiceLog_Statics::NewProp_InstanceId = { "InstanceId", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSessionServiceLog, InstanceId), Z_Construct_UScriptStruct_FGuid, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InstanceId_MetaData), NewProp_InstanceId_MetaData) };
const UECodeGen_Private::FDoublePropertyParams Z_Construct_UScriptStruct_FSessionServiceLog_Statics::NewProp_TimeSeconds = { "TimeSeconds", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSessionServiceLog, TimeSeconds), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TimeSeconds_MetaData), NewProp_TimeSeconds_MetaData) };
const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FSessionServiceLog_Statics::NewProp_Verbosity = { "Verbosity", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSessionServiceLog, Verbosity), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Verbosity_MetaData), NewProp_Verbosity_MetaData) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FSessionServiceLog_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServiceLog_Statics::NewProp_Category,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServiceLog_Statics::NewProp_Data,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServiceLog_Statics::NewProp_InstanceId,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServiceLog_Statics::NewProp_TimeSeconds,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSessionServiceLog_Statics::NewProp_Verbosity,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSessionServiceLog_Statics::PropPointers) < 2048);
// ********** End ScriptStruct FSessionServiceLog Property Definitions *****************************
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FSessionServiceLog_Statics::StructParams = {
(UObject* (*)())Z_Construct_UPackage__Script_SessionMessages,
nullptr,
&NewStructOps,
"SessionServiceLog",
Z_Construct_UScriptStruct_FSessionServiceLog_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSessionServiceLog_Statics::PropPointers),
sizeof(FSessionServiceLog),
alignof(FSessionServiceLog),
RF_Public|RF_Transient|RF_MarkAsNative,
EStructFlags(0x00000001),
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSessionServiceLog_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FSessionServiceLog_Statics::Struct_MetaDataParams)
};
UScriptStruct* Z_Construct_UScriptStruct_FSessionServiceLog()
{
if (!Z_Registration_Info_UScriptStruct_FSessionServiceLog.InnerSingleton)
{
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_FSessionServiceLog.InnerSingleton, Z_Construct_UScriptStruct_FSessionServiceLog_Statics::StructParams);
}
return CastChecked<UScriptStruct>(Z_Registration_Info_UScriptStruct_FSessionServiceLog.InnerSingleton);
}
// ********** End ScriptStruct FSessionServiceLog **************************************************
// ********** Begin ScriptStruct FSessionServiceLogSubscribe ***************************************
struct Z_Construct_UScriptStruct_FSessionServiceLogSubscribe_Statics
{
static inline consteval int32 GetStructSize() { return sizeof(FSessionServiceLogSubscribe); }
static inline consteval int16 GetStructAlignment() { return alignof(FSessionServiceLogSubscribe); }
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
{ "Comment", "/**\n * Implements a message to subscribe to an application's console log.\n */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Implements a message to subscribe to an application's console log." },
};
#endif // WITH_METADATA
// ********** Begin ScriptStruct FSessionServiceLogSubscribe constinit property declarations *******
// ********** End ScriptStruct FSessionServiceLogSubscribe constinit property declarations *********
static void* NewStructOps()
{
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FSessionServiceLogSubscribe>();
}
static const UECodeGen_Private::FStructParams StructParams;
}; // struct Z_Construct_UScriptStruct_FSessionServiceLogSubscribe_Statics
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_FSessionServiceLogSubscribe;
class UScriptStruct* FSessionServiceLogSubscribe::StaticStruct()
{
if (!Z_Registration_Info_UScriptStruct_FSessionServiceLogSubscribe.OuterSingleton)
{
Z_Registration_Info_UScriptStruct_FSessionServiceLogSubscribe.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FSessionServiceLogSubscribe, (UObject*)Z_Construct_UPackage__Script_SessionMessages(), TEXT("SessionServiceLogSubscribe"));
}
return Z_Registration_Info_UScriptStruct_FSessionServiceLogSubscribe.OuterSingleton;
}
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FSessionServiceLogSubscribe_Statics::StructParams = {
(UObject* (*)())Z_Construct_UPackage__Script_SessionMessages,
nullptr,
&NewStructOps,
"SessionServiceLogSubscribe",
nullptr,
0,
sizeof(FSessionServiceLogSubscribe),
alignof(FSessionServiceLogSubscribe),
RF_Public|RF_Transient|RF_MarkAsNative,
EStructFlags(0x00000001),
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSessionServiceLogSubscribe_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FSessionServiceLogSubscribe_Statics::Struct_MetaDataParams)
};
UScriptStruct* Z_Construct_UScriptStruct_FSessionServiceLogSubscribe()
{
if (!Z_Registration_Info_UScriptStruct_FSessionServiceLogSubscribe.InnerSingleton)
{
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_FSessionServiceLogSubscribe.InnerSingleton, Z_Construct_UScriptStruct_FSessionServiceLogSubscribe_Statics::StructParams);
}
return CastChecked<UScriptStruct>(Z_Registration_Info_UScriptStruct_FSessionServiceLogSubscribe.InnerSingleton);
}
// ********** End ScriptStruct FSessionServiceLogSubscribe *****************************************
// ********** Begin ScriptStruct FSessionServiceLogUnsubscribe *************************************
struct Z_Construct_UScriptStruct_FSessionServiceLogUnsubscribe_Statics
{
static inline consteval int32 GetStructSize() { return sizeof(FSessionServiceLogUnsubscribe); }
static inline consteval int16 GetStructAlignment() { return alignof(FSessionServiceLogUnsubscribe); }
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
{ "Comment", "/**\n * Implements a message to unsubscribe from an application's console log.\n */" },
{ "ModuleRelativePath", "Public/SessionServiceMessages.h" },
{ "ToolTip", "Implements a message to unsubscribe from an application's console log." },
};
#endif // WITH_METADATA
// ********** Begin ScriptStruct FSessionServiceLogUnsubscribe constinit property declarations *****
// ********** End ScriptStruct FSessionServiceLogUnsubscribe constinit property declarations *******
static void* NewStructOps()
{
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FSessionServiceLogUnsubscribe>();
}
static const UECodeGen_Private::FStructParams StructParams;
}; // struct Z_Construct_UScriptStruct_FSessionServiceLogUnsubscribe_Statics
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_FSessionServiceLogUnsubscribe;
class UScriptStruct* FSessionServiceLogUnsubscribe::StaticStruct()
{
if (!Z_Registration_Info_UScriptStruct_FSessionServiceLogUnsubscribe.OuterSingleton)
{
Z_Registration_Info_UScriptStruct_FSessionServiceLogUnsubscribe.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FSessionServiceLogUnsubscribe, (UObject*)Z_Construct_UPackage__Script_SessionMessages(), TEXT("SessionServiceLogUnsubscribe"));
}
return Z_Registration_Info_UScriptStruct_FSessionServiceLogUnsubscribe.OuterSingleton;
}
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FSessionServiceLogUnsubscribe_Statics::StructParams = {
(UObject* (*)())Z_Construct_UPackage__Script_SessionMessages,
nullptr,
&NewStructOps,
"SessionServiceLogUnsubscribe",
nullptr,
0,
sizeof(FSessionServiceLogUnsubscribe),
alignof(FSessionServiceLogUnsubscribe),
RF_Public|RF_Transient|RF_MarkAsNative,
EStructFlags(0x00000001),
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSessionServiceLogUnsubscribe_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FSessionServiceLogUnsubscribe_Statics::Struct_MetaDataParams)
};
UScriptStruct* Z_Construct_UScriptStruct_FSessionServiceLogUnsubscribe()
{
if (!Z_Registration_Info_UScriptStruct_FSessionServiceLogUnsubscribe.InnerSingleton)
{
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_FSessionServiceLogUnsubscribe.InnerSingleton, Z_Construct_UScriptStruct_FSessionServiceLogUnsubscribe_Statics::StructParams);
}
return CastChecked<UScriptStruct>(Z_Registration_Info_UScriptStruct_FSessionServiceLogUnsubscribe.InnerSingleton);
}
// ********** End ScriptStruct FSessionServiceLogUnsubscribe ***************************************
// ********** Begin Registration *******************************************************************
struct Z_CompiledInDeferFile_FID_Engine_Source_Runtime_SessionMessages_Public_SessionServiceMessages_h__Script_SessionMessages_Statics
{
static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = {
{ FSessionServicePing::StaticStruct, Z_Construct_UScriptStruct_FSessionServicePing_Statics::NewStructOps, TEXT("SessionServicePing"),&Z_Registration_Info_UScriptStruct_FSessionServicePing, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FSessionServicePing), 2871682640U) },
{ FSessionServicePong::StaticStruct, Z_Construct_UScriptStruct_FSessionServicePong_Statics::NewStructOps, TEXT("SessionServicePong"),&Z_Registration_Info_UScriptStruct_FSessionServicePong, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FSessionServicePong), 329824963U) },
{ FSessionServiceLog::StaticStruct, Z_Construct_UScriptStruct_FSessionServiceLog_Statics::NewStructOps, TEXT("SessionServiceLog"),&Z_Registration_Info_UScriptStruct_FSessionServiceLog, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FSessionServiceLog), 2435117937U) },
{ FSessionServiceLogSubscribe::StaticStruct, Z_Construct_UScriptStruct_FSessionServiceLogSubscribe_Statics::NewStructOps, TEXT("SessionServiceLogSubscribe"),&Z_Registration_Info_UScriptStruct_FSessionServiceLogSubscribe, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FSessionServiceLogSubscribe), 135371629U) },
{ FSessionServiceLogUnsubscribe::StaticStruct, Z_Construct_UScriptStruct_FSessionServiceLogUnsubscribe_Statics::NewStructOps, TEXT("SessionServiceLogUnsubscribe"),&Z_Registration_Info_UScriptStruct_FSessionServiceLogUnsubscribe, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FSessionServiceLogUnsubscribe), 1100142014U) },
};
}; // Z_CompiledInDeferFile_FID_Engine_Source_Runtime_SessionMessages_Public_SessionServiceMessages_h__Script_SessionMessages_Statics
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Engine_Source_Runtime_SessionMessages_Public_SessionServiceMessages_h__Script_SessionMessages_367156995{
TEXT("/Script/SessionMessages"),
nullptr, 0,
Z_CompiledInDeferFile_FID_Engine_Source_Runtime_SessionMessages_Public_SessionServiceMessages_h__Script_SessionMessages_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Source_Runtime_SessionMessages_Public_SessionServiceMessages_h__Script_SessionMessages_Statics::ScriptStructInfo),
nullptr, 0,
};
// ********** End Registration *********************************************************************
PRAGMA_ENABLE_DEPRECATION_WARNINGS