Prototype
void __cdecl fnPreCalculate ( void );
Return value
None
Parameters
None
Remarks
Implement this function if the plug-in needs to take some actions before any data is collected in fnPushValue.
Notice: If using MFC, be sure to start the function with AFX_MANAGE_STATE(AfxGetStaticModuleState());
Example
void __cdecl fnPreCalculate ( void ) { /* Reset global vars */ _characterCount = 0; _pushedValues = 0; }
See Also