HWND 와 HINSTANCE 차이
HWND A handle to a window. This type is declared in WinDef.h as follows: typedef HANDLE HWND; HINSTANCE A handle to an instance. This is the base address of the module in memory. HMODULE and HINSTANCE are the same today, but represented different things in 16-bit Windows. This type is declared in WinDef.h as follows: typedef HANDLE HINSTANCE; 1. hInstance로 hwnd를 알 수 있다. 2. hwnd = CWnd클래스의 Create..
MFC
2019. 7. 24. 10:32