mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
* Fixed bug causing command line interface not to work properly. * Optimized warning text and instructions. * Terminal will not be freed when compiled in Debug/Profile. * The console will now forward the command to all game window instances.
27 lines
682 B
C
27 lines
682 B
C
#pragma once
|
|
|
|
#define MAIN_WORKER_DLL "gamesdk.dll"
|
|
#define SERVER_WORKER_DLL "dedicated.dll"
|
|
#define CLIENT_WORKER_DLL "bin\\x64_retail\\client.dll"
|
|
|
|
#define MAIN_GAME_DLL "r5apex.exe"
|
|
#define SERVER_GAME_DLL "r5apex_ds.exe"
|
|
|
|
#define GAME_CFG_PATH "platform\\cfg\\"
|
|
|
|
#define DEFAULT_WINDOW_CLASS_NAME "Respawn001"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Launch and inject specified dll based on launch mode
|
|
//-----------------------------------------------------------------------------
|
|
enum class eLaunchMode : int
|
|
{
|
|
LM_NONE = -1,
|
|
LM_GAME_DEV,
|
|
LM_GAME,
|
|
LM_SERVER_DEV,
|
|
LM_SERVER,
|
|
LM_CLIENT_DEV,
|
|
LM_CLIENT,
|
|
};
|