![]() |
ARX
1.0
The next-generation open source augmented reality toolkit.
|
#include <ARX/ARUtil/types.h>
Go to the source code of this file.
Functions | |
ARUTIL_EXTERN char * | arUtilGetOSName (void) |
Get a string holding a descriptive name of the current operating system. More... | |
ARUTIL_EXTERN char * | arUtilGetOSVersion (void) |
Get a string holding a descriptive name of current operating system version. More... | |
ARUTIL_EXTERN char * | arUtilGetCPUName (void) |
Get a string holding a descriptive name of the current CPU type. More... | |
ARUTIL_EXTERN char * | arUtilGetModulePath (void) |
Get the full pathname of the code module in which this function exists. More... | |
ARUTIL_EXTERN 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.
ARUTIL_EXTERN 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.
ARUTIL_EXTERN 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.
ARUTIL_EXTERN 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.