This commit is contained in:
Joshua Granick
2018-01-29 15:59:12 -08:00
parent 686dea22e5
commit 08a68c521b

View File

@@ -62,14 +62,7 @@ namespace lime {
}
std::wstring* System::GetManufacturer () {
return NULL;
}
std::wstring* System::GetModel () {
std::wstring* System::GetDeviceModel () {
#ifdef IPHONE
struct utsname systemInfo;
@@ -84,7 +77,28 @@ namespace lime {
}
std::wstring* System::GetVersion () {
std::wstring* System::GetDeviceVendor () {
return NULL;
}
std::wstring* System::GetPlatformLabel () {
return NULL;
}
std::wstring* System::GetPlatformName () {
return NULL;
}
std::wstring* System::GetPlatformVersion () {
#ifdef IPHONE
NSString *versionString = [[UIDevice currentDevice] systemVersion];