AfxGetResourceHandle

使用此功能直接返回的 HINSTANCE 处理访问应用程序的资源,例如,调用 windows 函数 FindResource

extern HINSTANCE AfxGetResourceHandle( );

返回值

应用程序默认资源加载的 HINSTANCE 处理。

示例

//Load the menu specifying the module handle where resource is to be 
//found & resource ID
HMENU hMenu = ::LoadMenu(AfxGetResourceHandle(), MAKEINTRESOURCE(IDR_MAINFRAME));

要求

Header: afxwin.h

请参见

参考

AfxGetInstanceHandle

AfxSetResourceHandle

AfxFindResourceHandle

概念

MFC宏和Globals