Files
UnrealEngineUWP/Engine/Source/Developer/Windows/LiveCoding/Private/External/LC_ClientCommandActions.h
Tim Smith b48b94b010 Integration of Live++ 1.6.3
#rb none
#rnx

[CL 14926202 by Tim Smith in ue5-main branch]
2020-12-15 09:27:44 -04:00

37 lines
1005 B
C++

// Copyright 2011-2020 Molecular Matters GmbH, all rights reserved.
#pragma once
// BEGIN EPIC MOD
#include "CoreTypes.h"
// END EPIC MOD
#include "LC_Commands.h"
class DuplexPipe;
namespace actions
{
#define DECLARE_ACTION(_name) \
struct _name \
{ \
typedef ::commands::_name CommandType; \
static bool Execute(const CommandType* command, const DuplexPipe* pipe, void* context, const void* payload, size_t payloadSize); \
}
DECLARE_ACTION(RegisterProcessFinished);
DECLARE_ACTION(EnableModulesFinished);
DECLARE_ACTION(DisableModulesFinished);
DECLARE_ACTION(EnterSyncPoint);
DECLARE_ACTION(LeaveSyncPoint);
DECLARE_ACTION(CallHooks);
DECLARE_ACTION(LoadPatch);
DECLARE_ACTION(UnloadPatch);
DECLARE_ACTION(CallEntryPoint);
DECLARE_ACTION(LogOutput);
DECLARE_ACTION(CompilationFinished);
DECLARE_ACTION(HandleExceptionFinished);
#undef DECLARE_ACTION
}