mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 06:34:36 +00:00
Modified files for SDL2.
This commit is contained in:
parent
33a0579735
commit
475f218bcd
33 changed files with 436 additions and 136 deletions
|
|
@ -174,6 +174,15 @@ namespace Platform
|
|||
bool isdst; ///< True if daylight savings time is active
|
||||
};
|
||||
|
||||
enum ALERT_ASSERT_RESULT
|
||||
{
|
||||
ALERT_ASSERT_DEBUG,
|
||||
ALERT_ASSERT_IGNORE,
|
||||
ALERT_ASSERT_IGNORE_ALL,
|
||||
ALERT_ASSERT_EXIT
|
||||
};
|
||||
|
||||
|
||||
void getLocalTime(LocalTime &);
|
||||
|
||||
/// Converts the local time to a formatted string appropriate
|
||||
|
|
@ -300,6 +309,7 @@ namespace Platform
|
|||
void AlertOK(const char *windowTitle, const char *message);
|
||||
bool AlertOKCancel(const char *windowTitle, const char *message);
|
||||
bool AlertRetry(const char *windowTitle, const char *message);
|
||||
ALERT_ASSERT_RESULT AlertAssert(const char *windowTitle, const char *message);
|
||||
|
||||
// Volumes
|
||||
struct VolumeInformation
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue