mirror of
https://github.com/patchzyy/wiicompiled
synced 2026-09-10 17:16:47 -04:00
13 lines
180 B
C++
13 lines
180 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace aurora {
|
|
void log_system_information();
|
|
|
|
namespace system_info {
|
|
#if __APPLE__
|
|
std::string getSystemVersionString();
|
|
#endif
|
|
}
|
|
} |