mirror of
https://github.com/gre/gl-react.git
synced 2026-01-18 16:16:59 +00:00
16 lines
302 B
C
Executable File
16 lines
302 B
C
Executable File
#ifndef __EXIOSUTILS_H__
|
|
#define __EXIOSUTILS_H__
|
|
|
|
void EXiOSLog(const char *msg, ...) __attribute__((format(printf, 1, 2)));
|
|
|
|
struct EXiOSOperatingSystemVersion {
|
|
long majorVersion;
|
|
long minorVersion;
|
|
long patchVersion;
|
|
};
|
|
|
|
EXiOSOperatingSystemVersion EXiOSGetOperatingSystemVersion();
|
|
|
|
#endif
|
|
|