|
Katana Plug-in APIs 0.1
|
00001 // Copyright (c) 2022 The Foundry Visionmongers Ltd. All Rights Reserved. 00002 00003 #ifndef FoundryKatanaAPI_H 00004 #define FoundryKatanaAPI_H 00005 00006 #define KATANA_TO_STR(_str) _KATANA_STR(_str) 00007 #define _KATANA_STR(_str) #_str 00008 00009 // The three components of the Katana version 00010 #define KATANA_VERSION_MAJOR 5 00011 #define KATANA_VERSION_MINOR 0 00012 #define KATANA_VERSION_RELEASE 2 00013 00014 // Strings for the three components of the Katana version 00015 #define KATANA_VERSION_STR_MAJOR KATANA_TO_STR(KATANA_VERSION_MAJOR) 00016 #define KATANA_VERSION_STR_MINOR KATANA_TO_STR(KATANA_VERSION_MINOR) 00017 #define KATANA_VERSION_STR_RELEASE KATANA_TO_STR(KATANA_VERSION_RELEASE) 00018 00019 // String for the full Katana version 00020 #define KATANA_VERSION_STR KATANA_VERSION_STR_MAJOR "."\ 00021 KATANA_VERSION_STR_MINOR "."\ 00022 KATANA_VERSION_STR_RELEASE 00023 00024 #endif // FoundryKatanaAPI_H 00025
1.7.3