Help File:4 ptFunctionPointerschange

From Cheat Engine
Jump to navigation Jump to search

ptFunctionPointerschange[edit]

With this PluginType you will be notified when one or more of the pointers are changed due to user actions. (Other plugins that change the pointers are excluded) This is useful in cases you want to hook an API.

Callback Definition

typedef void ( __stdcall *CEP_PLUGINTYPE4)(int reserved);

Reserved: Contains the section in which a change happened. Not useful at all...


Pointer to structure of init you have to pass

struct PLUGINTYPE4_INIT
{
  CEP_PLUGINTYPE4 callbackroutine; //Pointer to a callback routine of the type 4 plugin
};