mirror of
https://github.com/RPCS3/rpcs3
synced 2024-11-02 11:45:30 +00:00
32 lines
613 B
Text
32 lines
613 B
Text
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wold-style-cast"
|
|
#import <Foundation/Foundation.h>
|
|
#pragma GCC diagnostic pop
|
|
|
|
namespace Darwin_Version
|
|
{
|
|
NSOperatingSystemVersion osver = NSProcessInfo.processInfo.operatingSystemVersion;
|
|
|
|
int getNSmajorVersion()
|
|
{
|
|
return osver.majorVersion;
|
|
}
|
|
|
|
int getNSminorVersion()
|
|
{
|
|
return osver.minorVersion;
|
|
}
|
|
|
|
int getNSpatchVersion()
|
|
{
|
|
return osver.patchVersion;
|
|
}
|
|
}
|
|
|
|
namespace Darwin_ProcessInfo
|
|
{
|
|
bool getLowPowerModeEnabled()
|
|
{
|
|
return NSProcessInfo.processInfo.isLowPowerModeEnabled;
|
|
}
|
|
}
|