-
Notifications
You must be signed in to change notification settings - Fork 13
/
dllmain.cpp
78 lines (67 loc) · 1.72 KB
/
dllmain.cpp
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
70
71
72
73
74
75
76
77
78
#include "pch.h"
#include "Installer.h"
#include "SimpleFactory.h"
#include "ClassicEditWithNppExplorerCommandHandler.h"
#include "ModernEditWithNppExplorerCommandHandler.h"
#include "LoggingHelper.h"
using namespace NppShell::CommandHandlers;
using namespace NppShell::Factories;
using namespace NppShell::Helpers;
HMODULE g_module;
LoggingHelper g_loggingHelper;
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
UNREFERENCED_PARAMETER(lpReserved);
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
g_module = hModule;
NppShell::Installer::EnsureRegistrationOnCurrentUser();
break;
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}
STDAPI DllRegisterServer()
{
return NppShell::Installer::Install();
}
STDAPI DllUnregisterServer()
{
return NppShell::Installer::Uninstall();
}
__control_entrypoint(DllExport)
STDAPI DllCanUnloadNow(void)
{
if (winrt::get_module_lock())
{
return S_FALSE;
}
else
{
return S_OK;
}
}
_Use_decl_annotations_ STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv) try
{
*ppv = nullptr;
if (rclsid == __uuidof(ClassicEditWithNppExplorerCommandHandler))
{
return winrt::make<SimpleFactory<ClassicEditWithNppExplorerCommandHandler>>().as(riid, ppv);
}
else if (rclsid == __uuidof(ModernEditWithNppExplorerCommandHandler))
{
return winrt::make<SimpleFactory<ModernEditWithNppExplorerCommandHandler>>().as(riid, ppv);
}
else
{
return CLASS_E_CLASSNOTAVAILABLE;
}
}
catch (...)
{
return winrt::to_hresult();
}