mirror of https://github.com/tongzx/nt5src
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
55 lines
614 B
|
|
/*++
|
|
|
|
Copyright (c) 1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
win.h
|
|
|
|
Abstract:
|
|
|
|
Routines publicly exported from win.c; windows-specific functions.x
|
|
|
|
Author:
|
|
|
|
Matthew D Hendel (math) 20-Oct-1999
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#pragma once
|
|
|
|
//
|
|
// Win9x related APIs are not necessary on Win64.
|
|
//
|
|
|
|
#if !defined (_X86_)
|
|
|
|
#define WinOpenThread(_a,_i,_tid) (FALSE)
|
|
|
|
#else // X86
|
|
|
|
HANDLE
|
|
WINAPI
|
|
WinOpenThread(
|
|
DWORD dwDesiredAccess,
|
|
BOOL bInheritHandle,
|
|
DWORD dwThreadId
|
|
);
|
|
|
|
//
|
|
// Init must be called before calling WinOpenThread().
|
|
//
|
|
|
|
BOOL
|
|
WinInitialize(
|
|
);
|
|
|
|
VOID
|
|
WinFree(
|
|
);
|
|
|
|
|
|
#endif
|