Gaëtan Renaudeau cf49cf717f first impl of gl-react-native (wip)
it works but remain some bugs and image texture is not yet supported
2017-02-28 22:11:40 +01:00

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