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.

38 lines
554 B

  1. /*++
  2. Copyright (c) Microsoft Corporation
  3. Module Name:
  4. oscompat.hxx
  5. Abstract:
  6. This header file declares newer functions older OS
  7. version don't support.
  8. Author:
  9. JasonHa
  10. --*/
  11. #ifndef _OSCOMPAT_HXX_
  12. #define _OSCOMPAT_HXX_
  13. HANDLE
  14. OSCompat_OpenThread(
  15. DWORD dwDesiredAccess,
  16. BOOL bInheritHandle,
  17. DWORD dwThreadId
  18. );
  19. ULONG
  20. OSCompat_RtlFindLastBackwardRunClear(
  21. IN PRTL_BITMAP BitMapHeader,
  22. IN ULONG FromIndex,
  23. IN PULONG StartingRunIndex
  24. );
  25. #endif _OSCOMPAT_HXX_