Difference between revisions of "ISInterface:GetVersion"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
== Purpose == | == Purpose == | ||
+ | The main purpose of '''GetVersion''' is to verify the compatability of the extension with the Inner Space version. The value given by this function and the value given by the extension's ISXInterface function of the same name must match for the extension to load -- there is generally no reason for you to call this function yourself. The version number of ISXDK is changed only when extensions would otherwise crash. | ||
== Usage == | == Usage == | ||
=== Parameters === | === Parameters === | ||
+ | ''none'' | ||
+ | |||
=== Return Value === | === Return Value === | ||
+ | The ISXDK version number. This number is treated as hexadecimal, so version 14 of ISXDK is 0x14, or decimal 20. | ||
== Examples == | == Examples == | ||
+ | printf("Current ISXDK version number: %X",pISInterface->GetVersion()); | ||
== See Also == | == See Also == |
Revision as of 01:22, 23 July 2005
Purpose
The main purpose of GetVersion is to verify the compatability of the extension with the Inner Space version. The value given by this function and the value given by the extension's ISXInterface function of the same name must match for the extension to load -- there is generally no reason for you to call this function yourself. The version number of ISXDK is changed only when extensions would otherwise crash.
Usage
Parameters
none
Return Value
The ISXDK version number. This number is treated as hexadecimal, so version 14 of ISXDK is 0x14, or decimal 20.
Examples
printf("Current ISXDK version number: %X",pISInterface->GetVersion());