blob: d2af1b8babee40a23e6b86bd68b2f217a3b48ea2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright 1998 - 2003 Microsoft Corporation. All Rights Reserved.
//
// FILE: Globals.cpp
//
//
// PURPOSE: File that contains all the globals.
//
#include "precomp.h"
#include "globals.h"
// This indicates to Prefast that this is a usermode driver file.
_Analysis_mode_(_Analysis_code_type_user_driver_);
///////////////////////////////////////
// Globals
///////////////////////////////////////
// Module's Instance handle from DLLEntry of process.
HINSTANCE ghInstance = NULL;
// Module's Activation Context from DLLEntry of process.
HANDLE ghActCtx = INVALID_HANDLE_VALUE;
|