mirror of https://github.com/lianthony/NT4.0
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.
48 lines
613 B
48 lines
613 B
/*++
|
|
|
|
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
|
|
|
|
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
#include <nturtl.h>
|
|
#include <windows.h>
|
|
|
|
//
|
|
// Include Common Definitions.
|
|
//
|
|
|
|
ULONG
|
|
BaseSetLastNTError(
|
|
IN NTSTATUS Status
|
|
);
|
|
|
|
|
|
BOOL
|
|
Logon32Initialize(
|
|
IN PVOID hMod,
|
|
IN ULONG Reason,
|
|
IN PCONTEXT Context);
|
|
|
|
#endif _ADVAPI_
|