CWinApp::m_hInstance
Windows WinMainにを渡す hInstance のパラメーターに対応します。
HINSTANCE m_hInstance;
解説
m_hInstance のデータ メンバーは、Windows で実行するアプリケーションの現在のインスタンスへのハンドルです。これはグローバル関数 AfxGetInstanceHandleによって返されます。m_hInstance は HINSTANCE型のパブリック変数です。
使用例
// Typically you do not need to pass the application's hInstance
// to Windows APIs directly because there are equivalent MFC
// member functions that pass the hInstance for you. The following
// example is not typical:
HCURSOR hCursor;
hCursor = ::LoadCursor(AfxGetApp()->m_hInstance,
MAKEINTRESOURCE(IDC_MYCURSOR));
// A more direct way to get the application's hInstance is to
// call AfxGetInstanceHandle:
hCursor = ::LoadCursor(AfxGetInstanceHandle(),
MAKEINTRESOURCE(IDC_MYCURSOR));
// If you need the hInstance to load a resource, it is better
// to call AfxGetResourceHandle instead of AfxGetInstanceHandle:
hCursor = ::LoadCursor(AfxGetResourceHandle(),
MAKEINTRESOURCE(IDC_MYCURSOR));
// A better way to load the cursor resource is to call
// CWinApp::LoadCursor
hCursor = AfxGetApp()->LoadCursor(IDC_MYCURSOR);
必要条件
ヘッダー: afxwin.h