blob: e1bdc85cbff21818b83638a481b803eb8a304f45 (
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
30
31
32
33
34
35
36
|
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
Common.hpp
Abstract:
This is the header file containing the common include files for the project.
--*/
#ifndef _COMMON_HPP_
#define _COMMON_HPP
#include <windows.h>
#include <atlbase.h>
extern CComModule _Module; // required by atlcom.h
#include <atlcom.h>
#include <wdfinstaller.h>
#include "Resource.h"
#include "ProtNotify.h"
extern PFN_WDFPREDEVICEINSTALL pfnWdfPreDeviceInstall;
extern PFN_WDFPOSTDEVICEINSTALL pfnWdfPostDeviceInstall;
extern PFN_WDFPREDEVICEREMOVE pfnWdfPreDeviceRemove;
extern PFN_WDFPOSTDEVICEREMOVE pfnWdfPostDeviceRemove;
extern ATL::_ATL_OBJMAP_ENTRY* ObjectMap;
#endif // _COMMON_HPP_
|