mirror of
https://github.com/reactos/reactos.git
synced 2025-04-24 23:50:24 +00:00

- Set svn:ignore on directories Thanks to w3seek for pointing this out. svn path=/trunk/; revision=18132
13 lines
252 B
C
13 lines
252 B
C
#define ECHO_PORT 7
|
|
#define CHARGEN_PORT 19
|
|
#define DAYTIME_PORT 13
|
|
#define DISCARD_PORT 9
|
|
#define QOTD_PORT 17
|
|
|
|
#define MAX_THREADS 2
|
|
#define BUF_SIZE 255
|
|
|
|
typedef struct _MyData {
|
|
INT Port;
|
|
LPTHREAD_START_ROUTINE Service;
|
|
} MYDATA, *PMYDATA;
|