The following function declarations are the OCR for AnyDoc exported functions that you can code within your custom DLL. They are provided in the supplied header file VFYCUST.H.
#ifdef cplusplus
extern "C"/* Assume C declarations for C++ */
{
void CUSTOMDLL_API DLLInitialize( LPINITINFOSTRUCT );
void CUSTOMDLL_API DLLUninitialize( void );
void CUSTOMDLL_API DLLReinitialize( LPINITINFOSTRUCT );
void CUSTOMDLL_API DLLBatchStatus( LPDLLBATCHSTRUCT);
void CUSTOMDLL_API DLLAboutBox( LPSTR, LPSTR );
void CUSTOMDLL_API DLLVfyLinePhase( LPDLLVFYSTRUCT );
void CUSTOMDLL_API DLLMsgLinePhase( LPDLLMSGSTRUCT);
void CUSTOMDLL_API DLLRuleLinePhase(LPDLLRULESTRUCT);
void CUSTOMDLL_API DLLDlgLinePhase( LPDLLDLGSTRUCT );
#ifdef cplusplus
}/* End of extern "C" { */
#endif /* cplusplus */
The above functions, structures, and definitions, are explained in detail on the following sections.