Difference between revisions of "ISInterface:GetVersion"
Jump to navigation
Jump to search
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
+ | == Syntax == | ||
+ | *unsigned long GetVersion() | ||
== 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 === | ||
+ | *unsigned long | ||
+ | :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 == |
Latest revision as of 23:43, 2 September 2005
Syntax
- unsigned long GetVersion()
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
- unsigned long
- 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());