GetModuleBaseName用法
Posted ganxiang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GetModuleBaseName用法相关的知识,希望对你有一定的参考价值。
The GetModuleBaseName function retrieves the base name of the specified module.
DWORD GetModuleBaseName(
HANDLE hProcess, // handle to process
HMODULE hModule, // handle to module
LPTSTR lpBaseName, // base name buffer
DWORD nSize // maximum characters to retrieve
);
Parameters
hProcess
[in] Handle to the process that contains the module.
hModule
[in] Handle to the module.
lpBaseName
[out] Pointer to the buffer that receives the base name of the module. If the base name is longer than maximum number of characters specified by the nSize parameter, the base name is truncated.
nSize
[in] Specifies the maximum number of characters to copy to the lpBaseName buffe
以上是关于GetModuleBaseName用法的主要内容,如果未能解决你的问题,请参考以下文章