![]() |
ARX
1.0
The next-generation open source augmented reality toolkit.
|
Macros | |
#define | _GNU_SOURCE |
Functions | |
char * | arUtilGetOSName (void) |
Get a string holding a descriptive name of the current operating system. More... | |
char * | arUtilGetOSVersion (void) |
Get a string holding a descriptive name of current operating system version. More... | |
char * | arUtilGetCPUName (void) |
Get a string holding a descriptive name of the current CPU type. More... | |
char * | arUtilGetModulePath (void) |
Get the full pathname of the code module in which this function exists. More... | |
#define _GNU_SOURCE |
char * arUtilGetCPUName | ( | void | ) |
Get a string holding a descriptive name of the current CPU type.
For applications requiring some information on CPU type, this function provides the type of the CPU currently executing. It is determined in an operating system-dependent manner, and thus the results may not be directly comparable between different operating systems running on the same hardware.
If the CPU type cannot be determined, the string "unknown" will be returned.
char * arUtilGetModulePath | ( | void | ) |
Get the full pathname of the code module in which this function exists.
Gets the full filesystem path of the module in which this function is running. This is typically either an executable path or a dynamic library path.
char * arUtilGetOSName | ( | void | ) |
Get a string holding a descriptive name of the current operating system.
For applications requiring some information on operating system, this function provides the type of the operating system currently executing. It is defined to be one of the following values: "macos", "ios", "linux", "android", "windows", or "unknown" if the current OS cannot be determined.
char * arUtilGetOSVersion | ( | void | ) |
Get a string holding a descriptive name of current operating system version.
For applications requiring some information on operating system, this function provides the version of the operating system currently executing. It is determined in an operating system-dependent manner.
If the version cannot be determined, the string "unknown" will be returned.