1234567891011121314151617181920212223242526 |
- #include "precompile.h"
- #include "config.h"
- #include "version.h"
- #define TOOLKIT_VERSION_HEX ((TOOLKIT_VERSION_MAJOR << 16) | \
- (TOOLKIT_VERSION_MINOR << 8) | \
- (TOOLKIT_VERSION_REVISION))
- TOOLKIT_API unsigned int toolkit_version(void)
- {
- #if defined(_MSC_VER)
- ///*TODO(80374374@3/24/2023): */
- return 0;
- #else
- return TOOLKIT_VERSION_HEX;
- #endif //_MSC_VER
- }
- TOOLKIT_API const char* toolkit_version_string(void)
- {
- #if defined(_MSC_VER)
- return "TO IMPLEMENT";
- #else
- return TOOLKIT_VERSION_FULL;
- #endif //_MSC_VER
- }
|