PCTCP.H
上传用户:bjghjy
上传日期:2007-01-07
资源大小:379k
文件大小:1k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. #ifndef _WPCTCP_INC_
  2. #define _WPCTCP_INC_
  3. #include <winsock.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #define PORT_HQ (UINT)32255
  8. #define PORT_JY (UINT)32256
  9. #define PROTO_TCP 1
  10. #define PROTO_UDP 2
  11. extern int PROTO_USE;
  12. #define SOCK_DISCARD 9
  13. #define SOCK_SHOUT 32766
  14. #define PRBUF_LEN 50
  15. int PCTCPInit(void);
  16. int PCTCPExit(void);
  17. int PCTCPClose(void);
  18. int PCTCPStop(void);
  19. void PCTCPPause(BOOL);
  20. int ShoutBlockingHook(void);  
  21. void WriteMsg(LPSTR);
  22. extern BOOL can_read;
  23. #ifdef _cplusplus
  24. }
  25. #endif
  26. #endif