We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eec5bea commit 1ccc70aCopy full SHA for 1ccc70a
TestCode.cpp
@@ -11,16 +11,19 @@ int main()
11
12
LoadLibrary(_T("C:\\Users\\iiqone\\Desktop\\123.dll"));
13
14
+ HMODULE hHideBase = GetModuleHandle(_T("123.dll"));
15
+
16
XHideDll::PrintModuleList();
17
- XHideDll::HideInLoadOrderLinks(GetModuleHandle(_T("123.dll")));
18
+ XHideDll::HideInLoadOrderLinks(hHideBase);
19
- XHideDll::HideInMemoryOrderLinks(GetModuleHandle(_T("123.dll")));
20
+ XHideDll::HideInMemoryOrderLinks(hHideBase);
21
- XHideDll::HideInInitializationOrderLinks(GetModuleHandle(_T("123.dll")));
22
+ XHideDll::HideInInitializationOrderLinks(hHideBase);
23
24
25
26
27
return 0;
28
}
29
0 commit comments