Leaked source code of windows server 2003
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.

31 lines
774 B

  1. /*++ BUILD Version: 0009 // Increment this if a change has global effects
  2. Copyright (c) 1987-1993 Microsoft Corporation
  3. Module Name:
  4. mssndrcv.h
  5. Abstract:
  6. This is the include file that defines all constants and types for mailslot
  7. related transports.
  8. Revision History:
  9. Balan Sethu Raman (SethuR) 06-June-95 Created
  10. Notes:
  11. --*/
  12. #ifndef _MSSNDRCV_H_
  13. #define _MSSNDRCV_H_
  14. typedef struct SMBCE_SERVER_MAILSLOT_TRANSPORT {
  15. SMBCE_SERVER_TRANSPORT; // Anonymous struct for common fields
  16. ULONG TransportAddressLength;
  17. PTRANSPORT_ADDRESS pTransportAddress;
  18. } SMBCE_SERVER_MAILSLOT_TRANSPORT, *PSMBCE_SERVER_MAILSLOT_TRANSPORT;
  19. #endif // _MSSNDRCV_H_
  20.