sqlite_dllversion
Returns the version of the mIRC SQLite DLL.
Syntax
$sqlite_dllversion
|
Return Value
The version of the library.
Remarks
The returned version is delimited by periods and has 3 different numbers indicating the version: a major, a minor and a revision number.For example 1.2.3 means that major version is 1, minor 2 and the revision number is 3.
Example
; Displays the DLL version to an active window
//echo -a DLL Version: $sqlite_dllversion ; Example output: ; DLL Version: 1.0.0 |