Help File:PluginVersion
Revision as of 01:51, 28 May 2021 by Hidden-r3d (talk | contribs) (Created page with "The PluginVersion lets you specify for which plugin version the dll was developed and what the name of that plugin is. typedef struct _PluginVersion { unsign...")
The PluginVersion lets you specify for which plugin version the dll was developed and what the name of that plugin is.
typedef struct _PluginVersion { unsigned int version; char *pluginname; } PluginVersion, *PPluginVersion;
Members[edit]
version
Set this to the plugin version this dll is expecting. Cheat Engine will then try to provide your plugin with a compatible pointer/functionlists on initializePlugin.
pluginname
Set this to a 0-terminated string containing the name of the plugin shown to the user in the plugin menu in settings. Make sure this string is NOT stored on the stack as this pointer can be used at random times after return of the GetVersion function call.