Google
 

Trailing-Edge - PDP-10 Archives - SRI_NIC_PERM_FS_1_19910112 - kcc-6/include/csisym.h
There is 1 other file named csisym.h in the archive. Click here to see a list.
/* <CSISYM.H> - Provide access to CompuServe CSI monitor call symbols
**
**	(c) Copyright Ken Harrenstien 1989
**
** To get the 36-bit integer value of a monitor call symbol, say (e.g.)
**		csisym(".FOOUT")
** The argument must be a string literal and may be upper or lower case.
** The resulting value has type (int) and is a compile-time constant which
** can also be used in #if tests.  A compiler error will occur if the
** symbol is not found.
**
** To merely test whether a symbol is defined, use
**		csisymdefined(".FOOUT")
** which will have the value 1 if the symbol is defined, 0 otherwise.
**
*/

#ifndef _CSISYM_INCLUDED
#define _CSISYM_INCLUDED

#define csisym(s)	 _KCCsymval("UNV:CSISYM.UNV",s)
#define csisymdefined(s) _KCCsymfnd("UNV:CSISYM.UNV",s)

/* Note the use of the special KCC built-in functions.
** Make sure the file location is correct for your system.
*/
#endif /* ifndef _CSISYM_INCLUDED */