l3.libnazgul/test/create_delete.c

18 lines
296 B
C
Raw Normal View History

2019-09-16 15:00:07 +00:00
#include "nzg_global.h"
2004-02-16 21:25:11 +00:00
#include "nzg_iface.h"
#include "nzg_proto.h"
int main(void) {
2019-09-16 15:15:37 +00:00
// msgSpace mS=0;
msgSpaceId testId;
msgSpace * mSPAC;
2019-09-17 12:04:41 +00:00
strcpy(testId,"test");
printf("RequestedId: %s\n",testId);
2019-09-16 15:15:37 +00:00
mSPAC=msgSpaceCreate(testId,0,0,NULL);
2019-09-16 15:00:07 +00:00
msgSpaceDelete(testId);
2019-09-16 15:15:37 +00:00
2004-02-16 21:25:11 +00:00
return 0;
}