25 lines
716 B
C
25 lines
716 B
C
/****************************************************************
|
|
* *
|
|
* Copyright 2001, 2012 Fidelity Information Services, Inc *
|
|
* *
|
|
* This source code contains the intellectual property *
|
|
* of its copyright holder(s), and is made available *
|
|
* under a license. If you do not know the terms of *
|
|
* the license, please stop and do not read further. *
|
|
* *
|
|
****************************************************************/
|
|
#ifndef CALLG_H
|
|
#define CALLG_H
|
|
|
|
typedef struct gparam_list_struct
|
|
{
|
|
intszofptr_t n;
|
|
void *arg[MAX_ACTUALS];
|
|
} gparam_list;
|
|
|
|
typedef INTPTR_T (*callgfnptr)(intszofptr_t cnt, ...);
|
|
INTPTR_T callg(callgfnptr, gparam_list *);
|
|
void callg_signal(void *);
|
|
|
|
#endif
|