Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
639 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. faxsvr.h
  5. Abstract:
  6. This file contains common data structures and defines
  7. for the itg routing extension and the client com
  8. comtrol.
  9. Author:
  10. Wesley Witt (wesw) 13-May-1997
  11. Environment:
  12. User Mode
  13. --*/
  14. #define SERVICE_PORT 5001
  15. #define MAX_CLIENTS 32
  16. #define BUFFER_SIZE 512
  17. #define REQ_NEXT_FAX 1
  18. #define REQ_ACK 2
  19. #define RSP_GOOD 1
  20. #define RSP_BAD 0
  21. typedef struct _FAX_QUEUE_MESSAGE {
  22. DWORD Request;
  23. DWORD Response;
  24. CHAR Buffer[BUFFER_SIZE];
  25. } FAX_QUEUE_MESSAGE, *PFAX_QUEUE_MESSAGE;