mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
cppkore uses string/wstring as StringBase while we use std::string/std::wstring as string/wstring. Changed all types in cppkore to String/WString instead.
52 lines
1.5 KiB
C++
52 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include "ListBase.h"
|
|
#include "StringBase.h"
|
|
#include "SpecialFolder.h"
|
|
#include <cstdint>
|
|
|
|
#undef GetCommandLine
|
|
#undef SetEnvironmentVariable
|
|
#undef GetEnvironmentVariable
|
|
#undef GetComputerName
|
|
#undef GetUserName
|
|
|
|
namespace System
|
|
{
|
|
class Environment
|
|
{
|
|
public:
|
|
// Terminates the process with the given code
|
|
static void Exit(int32_t ExitCode);
|
|
|
|
// Gets the path to the specific system file folder
|
|
static String GetFolderPath(SpecialFolder Folder);
|
|
// Returns the application path
|
|
static String GetApplicationPath();
|
|
// Returns the application
|
|
static String GetApplication();
|
|
// Rethrns the full command line string
|
|
static String GetCommandLine();
|
|
// Returns a list of command line arguments
|
|
static List<String> GetCommandLineArgs();
|
|
// Returns the current users account name
|
|
static String GetUserName();
|
|
// Returns the current computer name
|
|
static String GetComputerName();
|
|
// Returns the total tick count since startup
|
|
static uint64_t GetTickCount();
|
|
|
|
// Sets an environment variable to the specified value
|
|
static void SetEnvironmentVariable(const String& Key, const String& Value);
|
|
// Gets an environment variable from the specified key
|
|
static String GetEnvironmentVariable(const String& Key);
|
|
// Expands environment variables in the given path
|
|
static String ExpandEnvironmentVariables(const String& Path);
|
|
|
|
// Returns whether or not we are a 64bit process
|
|
constexpr static bool Is64BitProcess();
|
|
|
|
// Returns a newline string for the environment
|
|
const static String NewLine;
|
|
};
|
|
} |