CreateWindow함수로 파라미터를 넘길 때.
참조 : http://msdn.microsoft.com/en-us/library/windows/desktop/ms632679(v=vs.85).aspx HWND WINAPI CreateWindow( _In_opt_ LPCTSTR lpClassName, _In_opt_ LPCTSTR lpWindowName, _In_ DWORD dwStyle, _In_ int x, _In_ int y, _In_ int nWidth, _In_ int nHeight, _In_opt_ HWND hWndParent, _In_opt_ HMENU hMenu, _In_opt_ HINSTANCE hInstance, _In_opt_ LPVOID lpParam ); 이 lParam에 원하는 데이터를 파라미터로 넘길 수 있다. RegisterC..
2013. 10. 17.