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.

35 lines
642 B

  1. /*++
  2. Copyright (c) 2000, Microsoft Corporation
  3. Module Name:
  4. ipfw.h
  5. Abstract:
  6. Contains declarations shared by the IPFW driver and its user-mode
  7. control program.
  8. Author:
  9. Abolade Gbadegesin (aboladeg) 7-Mar-2000
  10. Revision History:
  11. --*/
  12. #ifndef _IPFW_H_
  13. #define _IPFW_H_
  14. #define DD_IPFW_DEVICE_NAME L"\\Device\\IPFW"
  15. #define IPFW_ROUTINE_COUNT 10
  16. typedef struct _IPFW_CREATE_PACKET {
  17. ULONG Priority;
  18. } IPFW_CREATE_PACKET, *PIPFW_CREATE_PACKET;
  19. #define IPFW_CREATE_NAME "IpfwCreate"
  20. #define IPFW_CREATE_NAME_LENGTH (sizeof(IPFW_CREATE_NAME) - 1)
  21. #endif // _IPFW_H_