mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-29 04:37:55 +08:00
30 lines
744 B
C++
30 lines
744 B
C++
|
// dllmain.cpp : Defines the entry point for the DLL application.
|
||
|
#include "pch.h"
|
||
|
#include <mutex>
|
||
|
#include "shortcut_guide.h"
|
||
|
#include "overlay_window.h"
|
||
|
#include "trace.h"
|
||
|
|
||
|
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) {
|
||
|
switch (ul_reason_for_call) {
|
||
|
case DLL_PROCESS_ATTACH:
|
||
|
Trace::RegisterProvider();
|
||
|
break;
|
||
|
case DLL_THREAD_ATTACH:
|
||
|
case DLL_THREAD_DETACH:
|
||
|
break;
|
||
|
case DLL_PROCESS_DETACH:
|
||
|
Trace::UnregisterProvider();
|
||
|
break;
|
||
|
}
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
extern "C" __declspec(dllexport) PowertoyModuleIface* __cdecl powertoy_create() {
|
||
|
if (!instance) {
|
||
|
instance = new OverlayWindow();
|
||
|
return instance;
|
||
|
} else {
|
||
|
return nullptr;
|
||
|
}
|
||
|
}
|