mirror of
https://github.com/patchzyy/wiicompiled
synced 2026-09-11 09:25:05 -04:00
10 lines
299 B
Plaintext
10 lines
299 B
Plaintext
#include "system_info.hpp"
|
|
#include <Foundation/NSProcessInfo.h>
|
|
#include <Foundation/NSString.h>
|
|
|
|
namespace aurora::system_info {
|
|
std::string getSystemVersionString() {
|
|
NSString * str = [[NSProcessInfo processInfo] operatingSystemVersionString];
|
|
return [str UTF8String];
|
|
}
|
|
} |