9 lines
242 B
C
9 lines
242 B
C
|
#ifndef _CCEX_PIPE_H__
|
||
|
#define _CCEX_PIPE_H__
|
||
|
#include "CCEXPipeLib.h"
|
||
|
#include <WinSock2.h>
|
||
|
|
||
|
BOOL ReadPipePacket(SOCKET rsocket, char* pcReadBuf, int lMaxSize, int& lRead);
|
||
|
BOOL SendeData(SOCKET wsocket, const char* pData, int lLen);
|
||
|
|
||
|
#endif
|