다음을 통해 공유


CWinApp::LoadOEMCursor

로드 창을 미리 지정 된 커서 리소스 nIDCursor.

HCURSOR LoadOEMCursor(
   UINT nIDCursor 
) const;

매개 변수

  • nIDCursor
    OCR_ 매니페스트 상수 식별자는 미리 정의 된 Windows 커서를 지정 합니다.있어야 합니다 # define OEMRESOURCE 전에 # include <afxwin.h> 에 액세스 하는 OCR_ windows에서 상수.H.

반환 값

성공 하면 커서 핸들입니다. 그렇지 않으면 NULL.

설명

사용 된 LoadOEMCursor 또는 LoadStandardCursor 멤버 함수는 미리 정의 된 Windows 커서에 액세스할 수.

예제

// In the stdafx.h file, add #define OEMRESOURCE to
// include the windows.h definitions of OCR_ values.
#define OEMRESOURCE
#include <afxwin.h>         // MFC core and standard components
#include <afxext.h>         // MFC extensions
HCURSOR hCursor;
// Load the predefined WIndows "size all" cursor.
hCursor = AfxGetApp()->LoadOEMCursor(OCR_SIZEALL);

요구 사항

헤더: afxwin.h

참고 항목

참조

CWinApp 클래스

계층 구조 차트

CWinApp::LoadCursor

CWinApp::LoadStandardCursor

LoadCursor