mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-01 06:19:57 +01:00
18 lines
338 B
C
18 lines
338 B
C
|
/* -*-mode: C; fill-column: 78; c-basic-offset: 4; -*- */
|
||
|
|
||
|
#ifndef _XWRELAY_PRIV_H_
|
||
|
#define _XWRELAY_PRIV_H_
|
||
|
|
||
|
typedef unsigned short HostID;
|
||
|
typedef unsigned short CookieID; /* stands in for string after connection established */
|
||
|
|
||
|
typedef struct ThreadData {
|
||
|
int socket;
|
||
|
} ThreadData;
|
||
|
|
||
|
void logf( const char* format, ... );
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|