Difference between revisions of "Help File:4 ptFunctionPointerschange"

From Cheat Engine
Jump to navigation Jump to search
(Created page with "==ptFunctionPointerschange== 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 poin...")
 
(No difference)

Latest revision as of 10:25, 30 July 2021

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
};