Need help asap with hack making
Hi all,
When getting the handle to CShell, should I use LoadLibrary or GetModuleHandle? What is the difference? And also what is the difference between LoadLibrary and LoadLibraryA??
@
michielr can u help
You can use both,
but I recommend you GetModuleHandle, i use that.
A is for ANSII strings (char array), it supports less than 256 chars.
W is for UNICODE strings (wchar array), it supports very much chars, but it needs a bit more space.
LoadLibrary loads a library if it isn't already loaded and returns the begin of the module.
GetModuleHandle just returns the begin of the module and is a bit faster.