/************************************************************************* * Auto-Pro functions and structures definitions. * * IMPORTANT: this file is parsed to generate IPCRPT.C. Only use * variables types that are defined in the AWK script. Use short instead * of int, LPVOID or LPSHORT instead of void far * or short far *. * * Note: the resultant C file will not compiler without at least one * defined symbol, so we define RPT_DUMMY, but do not register it. *************************************************************************/ #include "ipcerr.h" #ifdef __cplusplus extern "C" { /* Assume C declarations for C++ */ #endif /* __cplusplus */ #define RPT_DUMMY 0 IPCFUNC IpRptShow(); IPCFUNC IpRptNew(LPSTR templatefile); IPCFUNC IpRptOpen(LPSTR reportfile); IPCFUNC IpRptClose(); IPCFUNC IpRptSave(LPSTR reportfile); IPCFUNC IpRptPrint(); #ifdef __cplusplus } #endif /* __cplusplus */