#ifndef IDL2F77_H #define IDL2F77_H /* These MUST match the corresponding entries in idl2f77.c message numbers */ #define F77_ERROR 0 #define F77_NOSTRINGARRAY -1 /* Handy macro */ #define ARRLEN(arr) (sizeof(arr)/sizeof(arr[0])) extern IDL_MSG_BLOCK msg_block; /*Define startup function and exit handler */ extern int F77_start(void); extern void F77_exit (void); #endif