<< Click to Display Table of Contents >> Navigation: WinLicense > Protecting an application > Plugins > SecureEngineDoRegistration |
This function is called by WinLicense to allow an application to be registered before it gets executed. WinLicense will pass an array of functions pointers to allow calling all necessary functions to register an application.
STDCALL bool SecureEngineDoRegistrationA( TWDCfunctionsArray *pArrayFunctions );
STDCALL bool SecureEngineDoRegistrationW( TWDCfunctionsArrayW *pArrayFunctions ); |
function SecureEngineDoRegistrationA( var pArrayFunctions:TWDCfunctionsArray ):Boolean; stdcall;
function SecureEngineDoRegistrationW( var pArrayFunctions:TWDCfunctionsArrayW ):Boolean; stdcall; |
Parameters
pArrayFunctions
[in] This parameter a specifies an array of functions (TWDCfunctionsArray) with pointers to specific registration functions.
Return Values
If the function returns True, WinLicense will continue running the protected application.
If the function returns False, WinLicense will terminate the protected application immediately.