17 lines
530 B
C
17 lines
530 B
C
#ifndef _NZG_PROTO
|
|
#define _NZG_PROTO 1
|
|
|
|
/* nzg_list.c */
|
|
char **msgSpaceIdList(void);
|
|
/* nzg_pool.c */
|
|
int msgPoolCreate(msgSpacePoolId poolId, int buffNb, int buffSize);
|
|
int msgSpacePoolId2nzgPoolId(msgSpacePoolId dest, msgSpacePoolId src, int num);
|
|
/* nzg_spaces.c */
|
|
msgSpace *msgSpaceCreate(msgSpaceId spaceId, int queueNb, int poolNb, msgPool *queueNbCar);
|
|
msgSpace *msgSpaceOpen(msgSpaceId spaceId);
|
|
int msgSpaceDelete(msgSpaceId spaceId);
|
|
int msgSp2nzgId(msgSpaceId dest, const msgSpaceId src);
|
|
/* nzg_state.c */
|
|
|
|
|
|
#endif
|