same def of RECSUPFUN for both C and C++

This commit is contained in:
Marty Kraimer
2003-05-13 15:53:07 +00:00
parent 29d0f4716c
commit eec0dc5ece

View File

@@ -18,11 +18,10 @@
#ifdef __cplusplus
extern "C" {
typedef long (*RECSUPFUN) (void *); /* ptr to record support function*/
#else
typedef long (*RECSUPFUN) (); /* ptr to record support function*/
#endif
typedef long (*RECSUPFUN) (); /* ptr to record support function*/
typedef struct rset { /* record support entry table */
long number; /*number of support routines */
RECSUPFUN report; /*print report */