Home | History | Annotate | Download | only in Control

Lines Matching full:classname

49 bool CWindow2::CreateEx(DWORD exStyle, LPCTSTR className, LPCTSTR windowName,

54 if (!::GetClassInfo(instance, className, &wc))
66 wc.lpszClassName = className;
70 return CWindow::CreateEx(exStyle, className, windowName, style,
76 bool CWindow2::CreateEx(DWORD exStyle, LPCWSTR className, LPCWSTR windowName,
84 needRegister = ::GetClassInfoW(instance, className, &wc) == 0;
91 if (IS_INTRESOURCE(className))
92 classNameP = (LPCSTR)className;
95 classNameA = GetSystemString(className);
113 wc.lpszClassName = className;
117 return CWindow::CreateEx(exStyle, className, windowName, style,