PowerToys/tools/HandlesExperiment/ContextMenuEntry/dllmain.cpp

25 lines
660 B
C++
Raw Normal View History

2022-09-09 17:23:38 +08:00
// dllmain.cpp : Defines the entry point for the DLL application.
#include "pch.h"
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