Revision 323032386666 () - Diff

Link to this snippet: https://friendpaste.com/2FgBfMlNYM3IfBDuNol9i1
Embed:
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
#include "main.h"
#include <windows.h>
#include <commctrl.h>

VOID ThreadProc();
LRESULT CALLBACK DLL_EXPORT LvmProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
BOOL CALLBACK EnumCW(HWND hwnd, LPARAM lParam);

HMODULE hDll;
DWORD g_ThreadId;
WNDPROC oldProc;
HWND lvmHwnd = NULL;

extern "C" BOOL APIENTRY DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
switch (fdwReason)
{
case DLL_PROCESS_ATTACH:
{
//MessageBox(0, "attached.", "msg", MB_OK | MB_ICONINFORMATION);
hDll = hinstDLL;
DisableThreadLibraryCalls(hDll);
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)&ThreadProc, NULL, NULL, &g_ThreadId);
}
break;

case DLL_PROCESS_DETACH:
// detach from process
break;

case DLL_THREAD_ATTACH:
// attach to thread
break;

case DLL_THREAD_DETACH:
// detach from thread
break;
}
return TRUE; // succesful
}

LRESULT CALLBACK DLL_EXPORT LvmProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
if(uMsg == LVM_INSERTITEM)
MessageBox(0, "success", "msg", MB_OK);
}

VOID ThreadProc()
{
HWND mtp = FindWindow(NULL, "MTP");
EnumChildWindows(tmgr, EnumCW, NULL);
if(lvmHwnd == NULL)
{
MessageBox(0, "lvm control not found", "msg", MB_OK);
} else {
oldProc = (WNDPROC) SetWindowLong(lvmHwnd, GWL_WNDPROC, (LONG) LvmProc);
}
}