mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 15:15:38 +00:00
43 lines
999 B
C++
43 lines
999 B
C++
//
|
|
// Platform.h
|
|
//
|
|
// Platform-specific functions.
|
|
//
|
|
|
|
#pragma once
|
|
#ifndef ES_CORE_PLATFORM_H
|
|
#define ES_CORE_PLATFORM_H
|
|
|
|
#include <string>
|
|
|
|
// Why the hell this naming inconsistency exists is well beyond me.
|
|
#if defined(_WIN64)
|
|
#define sleep Sleep
|
|
#endif
|
|
|
|
enum QuitMode {
|
|
QUIT = 0,
|
|
REBOOT = 1,
|
|
POWEROFF = 2
|
|
};
|
|
|
|
// Uses UTF-8 for Unix and does a UTF-16/wstring conversion for Windows.
|
|
int runSystemCommand(const std::string& cmd_utf8);
|
|
// Windows specific UTF-16/wstring function. (FOR FUTURE USE)
|
|
int runSystemCommand(const std::wstring& cmd_utf16);
|
|
|
|
int launchEmulatorUnix(const std::string& cmd_utf8);
|
|
int launchEmulatorWindows(const std::wstring& cmd_utf16);
|
|
|
|
unsigned int getTaskbarState();
|
|
void hideTaskbar();
|
|
void revertTaskbarState(unsigned int& state);
|
|
|
|
// Clean, normal shutdown.
|
|
int quitES(QuitMode mode = QuitMode::QUIT);
|
|
// Immediately shut down the application as cleanly as possible.
|
|
void emergencyShutdown();
|
|
void processQuitMode();
|
|
|
|
#endif // ES_CORE_PLATFORM_H
|