Lines Matching refs:wcex
751 WNDCLASSEXA wcex; in createMtaOleReqWnd() local
756 ZeroMemory( &wcex, sizeof( WNDCLASSEXA ) ); in createMtaOleReqWnd()
758 wcex.cbSize = sizeof(WNDCLASSEXA); in createMtaOleReqWnd()
759 wcex.style = 0; in createMtaOleReqWnd()
760 wcex.lpfnWndProc = static_cast< WNDPROC >( CMtaOleClipboard::mtaOleReqWndProc ); in createMtaOleReqWnd()
761 wcex.cbClsExtra = 0; in createMtaOleReqWnd()
762 wcex.cbWndExtra = 0; in createMtaOleReqWnd()
763 wcex.hInstance = hInst; in createMtaOleReqWnd()
764 wcex.hIcon = NULL; in createMtaOleReqWnd()
765 wcex.hCursor = NULL; in createMtaOleReqWnd()
766 wcex.hbrBackground = NULL; in createMtaOleReqWnd()
767 wcex.lpszMenuName = NULL; in createMtaOleReqWnd()
768 wcex.lpszClassName = g_szWndClsName; in createMtaOleReqWnd()
769 wcex.hIconSm = NULL; in createMtaOleReqWnd()
771 m_MtaOleReqWndClassAtom = RegisterClassExA( &wcex ); in createMtaOleReqWnd()