blob: 1eafe170ce22062371e6af511f97e5af2edcb0ea (
plain) (
blame)
1
2
3
4
5
6
7
8
|
/*
* GTERMIO.H -- Public definitions for the gterm i/o protocol module.
*/
struct GT_function {
char *name; /* callback name */
int (*func)(); /* callback function */
XtPointer data; /* callback data */
};
|