mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-18 22:26:30 +01:00
change how struct is defined for gcc
This commit is contained in:
parent
acbd41334f
commit
a07b388e7a
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ typedef enum {
|
||||||
|
|
||||||
#define MAX_QUEUE_SIZE 3
|
#define MAX_QUEUE_SIZE 3
|
||||||
|
|
||||||
typedef struct CeSocketWrapper {
|
struct CeSocketWrapper {
|
||||||
DataRecvProc dataProc;
|
DataRecvProc dataProc;
|
||||||
void* dataClosure;
|
void* dataClosure;
|
||||||
|
|
||||||
|
@ -67,7 +67,7 @@ typedef struct CeSocketWrapper {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
MPSLOT
|
MPSLOT
|
||||||
} CeSocketWrapper;
|
};
|
||||||
|
|
||||||
/* queue_packet: Place packet on queue using semaphore. Return false
|
/* queue_packet: Place packet on queue using semaphore. Return false
|
||||||
* if no room or fail for some other reason.
|
* if no room or fail for some other reason.
|
||||||
|
|
Loading…
Reference in a new issue