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.

45 lines
817 B

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. rtl.h
  5. Abstract:
  6. Some handy-dany RTL functions. These really should be part of the kernel
  7. Author:
  8. Environment:
  9. NT Kernel Model Driver only
  10. Revision History:
  11. --*/
  12. #ifndef _RTL_H_
  13. #define _RTL_H_
  14. PCM_RESOURCE_LIST
  15. RtlDuplicateCmResourceList(
  16. IN POOL_TYPE PoolType,
  17. IN PCM_RESOURCE_LIST ResourceList,
  18. IN ULONG Tag
  19. );
  20. ULONG
  21. RtlSizeOfCmResourceList(
  22. IN PCM_RESOURCE_LIST ResourceList
  23. );
  24. PCM_PARTIAL_RESOURCE_DESCRIPTOR
  25. RtlUnpackPartialDesc(
  26. IN UCHAR Type,
  27. IN PCM_RESOURCE_LIST ResList,
  28. IN OUT PULONG Count
  29. );
  30. #endif // _RTL_H_