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.
|
|
/*++
Copyright (c) 1990 Microsoft Corporation
Module Name:
advapi.h
Abstract:
This module contains private function prototypes and types for the advanced 32-bit windows base APIs.
Author:
Mark Lucovsky (markl) 18-Sep-1990
Revision History:
--*/
#ifndef _ADVAPI_
#define _ADVAPI_
#undef UNICODE
//
// get thunks right
//
#ifndef _ADVAPI32_
#define _ADVAPI32_
#endif
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#include <windows.h>
#ifdef __cplusplus
extern "C" { #endif
//
// Include Common Definitions.
//
ULONG BaseSetLastNTError( IN NTSTATUS Status );
extern RTL_CRITICAL_SECTION Logon32Lock ;
#ifdef __cplusplus
} // extern "C"
#endif
#endif _ADVAPI_
|