l3.libnazgul/src/nzg_iface.h

30 lines
427 B
C
Raw Normal View History

#ifndef _NZG_IFACE
#define _NZG_IFACE 1
2004-02-17 16:38:08 +00:00
#include "nzg_global.h"
#define MSGSPACE_DEFAULT_MODE 0600
2004-02-16 21:25:11 +00:00
2004-02-17 15:44:20 +00:00
typedef char * msgSpaceId;
typedef struct MsgPool {
} msgPool;
typedef struct MsgSpace {
} msgSpace;
2004-02-16 21:25:11 +00:00
typedef char * msgSpaceListElemId;
2004-02-16 21:25:11 +00:00
typedef struct MsgSpaceListElem {
void * id;
int ownerPid;
/* struct msgSpaceListElem * next; */
msgSpaceListElemId next;
} * msgSpaceList, msgSpaceListElem;
2004-02-16 21:25:11 +00:00
#endif
2004-02-16 21:25:11 +00:00
/* */