mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-06 03:07:54 +08:00
28 lines
725 B
C++
28 lines
725 B
C++
// dllmain.cpp : Defines the entry point for the DLL application.
|
|
#include "pch.h"
|
|
|
|
// Additional libraries to link
|
|
#pragma comment(lib, "shlwapi")
|
|
|
|
BOOL APIENTRY DllMain( HMODULE hModule,
|
|
DWORD ul_reason_for_call,
|
|
LPVOID lpReserved
|
|
)
|
|
{
|
|
switch (ul_reason_for_call)
|
|
{
|
|
case DLL_PROCESS_ATTACH:
|
|
case DLL_THREAD_ATTACH:
|
|
case DLL_THREAD_DETACH:
|
|
case DLL_PROCESS_DETACH:
|
|
break;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
// Things to implement:
|
|
// 1. A class which implements IExplorerCommand
|
|
// 2. A class which implements IClassFactory
|
|
// 3. DLL register/unregister functions which will create registry entries
|
|
// 4. Other DLL exported functions
|