Home
last modified time | relevance | path

Searched refs:cchTitle (Results 1 – 8 of 8) sorted by relevance

/reactos/dll/win32/iernonce/
H A Dregistry.cpp242 ULONG cchTitle; in RunOnceExInstance() local
243 Error = m_RegKey.QueryStringValue(L"Title", NULL, &cchTitle); in RunOnceExInstance()
246 Error = m_RegKey.QueryStringValue(L"Title", m_Title.GetBuffer(cchTitle + 1), &cchTitle); in RunOnceExInstance()
/reactos/dll/win32/shdocvw/
H A DCFavBand.cpp52 BOOL CFavBand::_GetTitle(LPWSTR pszTitle, INT cchTitle) in _GetTitle() argument
58 ::LoadStringW(hShell32, IDS_FAVORITES, pszTitle, cchTitle); in _GetTitle()
H A DCExplorerBand.cpp59 BOOL CExplorerBand::_GetTitle(LPWSTR pszTitle, INT cchTitle) in _GetTitle() argument
61 return ::LoadStringW(instance, IDS_FOLDERSLABEL, pszTitle, cchTitle); in _GetTitle()
H A DCFavBand.h52 BOOL _GetTitle(LPWSTR pszTitle, INT cchTitle) override;
H A DCExplorerBand.h64 BOOL _GetTitle(LPWSTR pszTitle, INT cchTitle) override;
H A DCNSCBand.h164 virtual BOOL _GetTitle(LPWSTR pszTitle, INT cchTitle) = 0;
/reactos/win32ss/user/user32/windows/
H A Dmessagebox.c148 int cchTotal, cchTitle, cchText, cchButton, i, n, cchBuffer; in MessageBoxTextToClipboard() local
157 cchTitle = GetWindowTextLengthW(DialogWindow) + 1; in MessageBoxTextToClipboard()
163 …pMessageBoxText = (LPWSTR)RtlAllocateHeap(GetProcessHeap(), 0, (cchTitle + cchText) * sizeof(WCHAR… in MessageBoxTextToClipboard()
172 pszText = pMessageBoxText + cchTitle; in MessageBoxTextToClipboard()
174 if (GetWindowTextW(DialogWindow, pszTitle, cchTitle) == 0 || in MessageBoxTextToClipboard()
184 …cchTotal = 6 + cchTitle + cchText + (lstrlenW(szLine) * 4) + (mbd->dwButtons * MSGBOXEX_MAXBTNSTR … in MessageBoxTextToClipboard()
/reactos/dll/win32/shell32/wine/
H A Dshellpath.c326 INT cchTitle = 0; in PathQualifyExW() local
349 if (cchTitle < 8) in PathQualifyExW()
350 szTitle[cchTitle++] = *pchTemp; in PathQualifyExW()