Files
UnrealEngineUWP/Engine/Source/Developer/Windows/LiveCoding/Private/External/LC_EntryPoint.h
ben marsh 83bd3cd7c6 Copying //UE4/Dev-Build to Dev-Main (//UE4/Dev-Main)
#rb none
#rnx

#ROBOMERGE-OWNER: lina.halper
#ROBOMERGE-AUTHOR: ben.marsh
#ROBOMERGE-SOURCE: CL 6631504 in //UE4/Main/...
#ROBOMERGE-BOT: ANIM (Main -> Dev-Anim) (v365-6733468)

[CL 6748759 by ben marsh in Dev-Anim branch]
2019-05-31 18:06:13 -04:00

25 lines
1.2 KiB
C

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
void __cdecl LppRegisterProcessGroup(const char* groupName);
void* __cdecl LppEnableModule(const wchar_t* nameOfExeOrDll);
void* __cdecl LppEnableModules(const wchar_t* namesOfExeOrDll[], unsigned int count);
void* __cdecl LppEnableAllModules(const wchar_t* nameOfExeOrDll);
void* __cdecl LppDisableModule(const wchar_t* nameOfExeOrDll);
void* __cdecl LppDisableAllModules(const wchar_t* nameOfExeOrDll);
void __cdecl LppWaitForToken(void* token);
void __cdecl LppTriggerRecompile(void);
void __cdecl LppInstallExceptionHandler(void);
void __cdecl LppUseExternalBuildSystem(void);
void __cdecl LppShowConsole();
void __cdecl LppSetVisible(bool visible);
void __cdecl LppSetActive(bool active);
void __cdecl LppSetBuildArguments(const wchar_t* arguments);
void __cdecl LppApplySettingBool(const char* settingName, int value);
void __cdecl LppApplySettingInt(const char* settingName, int value);
void __cdecl LppApplySettingString(const char* settingName, const wchar_t* const value);
// BEGIN EPIC MOD - Support for lazy-loading modules
void __cdecl LppEnableLazyLoadedModule(const wchar_t* nameOfExeOrDll);
// END EPIC MODS