AfxGetInstanceHandle
此功能可用于检索当前应用程序的实例句柄。
HINSTANCE AFXAPI AfxGetInstanceHandle( );
返回值
对应用程序的当前实例的 HINSTANCE 。 如果调用与 MFC 的 USRDLL 版本链接的 DLL 中, HINSTANCE DLL 返回。
备注
AfxGetInstanceHandle 始终返回 HINSTANCE 可执行文件 (.EXE),除非它调用与 MFC 的 USRDLL 版本链接的 DLL 内。 在这种情况下,它将返回 HINSTANCE 到 DLL。
示例
// Print the application instance handle to the debugger output window.
TRACE(_T("Application instance handle is 0x%0X\n"), AfxGetInstanceHandle());
要求
Header: afxwin.h