Update data structures

This commit is contained in:
Glenn Y. Rolland 2019-09-16 16:43:39 +02:00
parent c29bf164c5
commit 4f4eb5b1a2
2 changed files with 20 additions and 3 deletions

View file

@ -16,6 +16,7 @@ msgSpace * msgSpaceCreate(
msgPool * queueNbCar // tableau de caracteristiques des different pool
){
// on créee
// on ajoute spaceId a la liste des msgSpace connus
// on crée queueNb files de messages
@ -31,3 +32,12 @@ msgSpace * msgSpaceCreate(
}
void msgSpaceOpen(msgSpaceId){
return NULL;
}
void msgSpaceDelete(msgSpaceId spaceId){
//
}

View file

@ -1,8 +1,15 @@
#include "types.h"
typedef int msgSpaceId;
typedef int msgSpace;
typedef int msgPool;
typedef char * msgSpaceId;
typedef struct MsgPool {
} msgPool;
typedef struct MsgSpace {
} msgSpace;