Check Version

Signature

int tim_checkVersion(); //id:0x1000

Description

Returns the current version of the VM extension.

Example

if (tim_checkVersion == 0)
{
    return;
}
//other call targets

Notes

This can be very useful in checking whether the VM extension is active at all before trying to call any of its other functions. As doing so without it being active will result in a soft-lock.

Last updated