AfxGetInstanceHandle
這個函式可讓您擷取目前應用程式的執行個體控制代碼。
HINSTANCE AFXAPI AfxGetInstanceHandle( );
傳回值
對應用程式的目前執行個體的 HINSTANCE 。 如果呼叫時在 DLL 中與 MFC 的 USRDLL 版本相連,會傳回對 DLL 的 HINSTANCE。
備註
AfxGetInstanceHandle 永遠傳回可執行檔 (.EXE)的 HINSTANCE,除非它呼叫時在 DLL 中與 MFC 的 USRDLL 版本相連。 在此種狀況中,它會傳回對 DLL 的 HINSTANCE。
範例
// Print the application instance handle to the debugger output window.
TRACE(_T("Application instance handle is 0x%0X\n"), AfxGetInstanceHandle());
需求
標題: afxwin.h