Source code of Windows XP (NT5)
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.

55 lines
614 B

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. win.h
  5. Abstract:
  6. Routines publicly exported from win.c; windows-specific functions.x
  7. Author:
  8. Matthew D Hendel (math) 20-Oct-1999
  9. Revision History:
  10. --*/
  11. #pragma once
  12. //
  13. // Win9x related APIs are not necessary on Win64.
  14. //
  15. #if !defined (_X86_)
  16. #define WinOpenThread(_a,_i,_tid) (FALSE)
  17. #else // X86
  18. HANDLE
  19. WINAPI
  20. WinOpenThread(
  21. DWORD dwDesiredAccess,
  22. BOOL bInheritHandle,
  23. DWORD dwThreadId
  24. );
  25. //
  26. // Init must be called before calling WinOpenThread().
  27. //
  28. BOOL
  29. WinInitialize(
  30. );
  31. VOID
  32. WinFree(
  33. );
  34. #endif