File size: 264 Bytes
8739cbb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef celib_h
#define celib_h


//first call lua command injectCEHelperLib()
typedef struct _cecs

{
  volatile int locked;
  volatile int threadid;
  volatile int lockcount; 
} cecs, *Pcecs;

void csenter(cecs *cs);
void csleave(cecs *cs);

#endif