-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
AutoHModule.h
69 lines (53 loc) · 1.65 KB
/
AutoHModule.h
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
Module : AutoHModule.h
Purpose: Defines the interface for a class which supports auto closing of a HMODULE via FreeLibrary and
setting of the last Win32 error via SetLastError
Created: PJN / 10-01-2013
Copyright (c) 2013 by PJ Naughter (Web: www.naughter.com, Email: [email protected])
All rights reserved.
Copyright / Usage Details:
You are allowed to include the source code in any product (commercial, shareware, freeware or otherwise)
when your product is released in binary form. You are allowed to modify the source code in any way you want
except you cannot modify the copyright details at the top of each module. If you want to distribute source
code with your application, then you are only allowed to distribute versions released by the author. This is
to maintain a single distribution point for the source code.
*/
///////////////////////// Macros / Structs etc ////////////////////////////////
#pragma once
#ifndef __AUTOHMODULE_H__
#define __AUTOHMODULE_H__
///////////////////////// Classes /////////////////////////////////////////////
class CAutoHModule
{
public:
//Constructors / Destructors
CAutoHModule() : m_hModule(nullptr),
m_dwError(ERROR_SUCCESS)
{
}
explicit CAutoHModule(HMODULE hModule) : m_hModule(hModule),
m_dwError(GetLastError())
{
}
explicit CAutoHModule(HMODULE hModule, DWORD dwError) : m_hModule(hModule),
m_dwError(dwError)
{
}
~CAutoHModule()
{
if (m_hModule != nullptr)
{
FreeLibrary(m_hModule);
m_hModule = nullptr;
}
SetLastError(m_dwError);
}
operator HMODULE()
{
return m_hModule;
}
//Member variables
HMODULE m_hModule;
DWORD m_dwError;
};
#endif //__AUTOHMODULE_H__