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.

46 lines
728 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. browsdom.h
  5. Abstract:
  6. Private header file to be included by Browser service modules that
  7. need to deal with the browser list.
  8. Author:
  9. Larry Osterman (larryo) 3-Mar-1992
  10. Revision History:
  11. --*/
  12. #ifndef _BROWSDOM_INCLUDED_
  13. #define _BROWSDOM_INCLUDED_
  14. RTL_GENERIC_COMPARE_RESULTS
  15. BrCompareDomainListEntry(
  16. PRTL_GENERIC_TABLE Table,
  17. PVOID FirstStruct,
  18. PVOID SecondStruct
  19. );
  20. PVOID
  21. BrAllocateDomainListEntry(
  22. PRTL_GENERIC_TABLE Table,
  23. CLONG ByteSize
  24. );
  25. PVOID
  26. BrFreeDomainListEntry(
  27. PRTL_GENERIC_TABLE Table,
  28. CLONG ByteSize
  29. );
  30. #endif // _BROWSDOM_INCLUDED_
  31.