You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#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]
25 lines
1.2 KiB
C
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
|