Update data structures
This commit is contained in:
parent
c29bf164c5
commit
4f4eb5b1a2
2 changed files with 20 additions and 3 deletions
|
@ -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){
|
||||
//
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue