Fix
This commit is contained in:
parent
32185c9c12
commit
7d5f17edf6
|
@ -87,14 +87,11 @@ HMODULE GetCurrentModule()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Correct this
|
// Correct this
|
||||||
// TODO: Add *wchar_t argument, size argument. Write ExtractFilePath function
|
// TODO: Write ExtractFilePath function
|
||||||
// Variable "Filename" will be deleted after you exit the function.
|
// see http://forum.sources.ru/index.php?showtopic=48042
|
||||||
// Stas => vk.com/im
|
DWORD GetBinaryPath(LPTSTR lpFileName, DWORD nSize)
|
||||||
LPCWSTR GetBinaryPath()
|
|
||||||
{
|
{
|
||||||
wchar_t Filename[256];
|
return GetModuleFileName(GetCurrentModule(), lpFileName, nSize);
|
||||||
GetModuleFileName(GetCurrentModule(), Filename, 256);
|
|
||||||
return Filename;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*PLATFORM_DWORD SearchAddressBySignature(char *StartPosition, PLATFORM_DWORD Size, char *Signature, int SignatureSize)
|
/*PLATFORM_DWORD SearchAddressBySignature(char *StartPosition, PLATFORM_DWORD Size, char *Signature, int SignatureSize)
|
||||||
|
|
Loading…
Reference in New Issue