Home
last modified time | relevance | path

Searched refs:szDate (Results 1 – 7 of 7) sorted by relevance

/reactos/base/shell/cmd/
H A Ddate.c183 TCHAR szDate[40]; in cmd_date() local
223 ConInString(szDate, ARRAYSIZE(szDate)); in cmd_date()
225 TRACE("\'%s\'\n", debugstr_aw(szDate)); in cmd_date()
227 while (*szDate && szDate[_tcslen(szDate) - 1] < _T(' ')) in cmd_date()
228 szDate[_tcslen(szDate) - 1] = _T('\0'); in cmd_date()
230 if (ParseDate(szDate)) in cmd_date()
H A Dlocale.c60 static TCHAR szDate[32]; in GetDateString() local
64 GetDateFormat(LOCALE_USER_DEFAULT, DATE_SHORTDATE, &t, NULL, szDate, ARRAYSIZE(szDate)); in GetDateString()
65 return szDate; in GetDateString()
H A Ddir.c882 TCHAR szDate[20]; in DirPrintNewList() local
918 DirPrintFileDateTime(szDate, szTime, &ptrFiles[i]->stFindInfo, lpFlags); in DirPrintNewList()
922 szDate, in DirPrintNewList()
1053 TCHAR szDate[30],szTime[30]; /* Used to format time and date */ in DirPrintOldList() local
1091 DirPrintFileDateTime(szDate,szTime,&ptrFiles[i]->stFindInfo,lpFlags); in DirPrintOldList()
1099 szDate, /* The date of file/dir */ in DirPrintOldList()
/reactos/base/applications/cmdutils/where/
H A Dwhere.c86 WCHAR szPath[MAX_PATH + 2], szDate[32], szTime[32]; in WherePrintPath() local
104 GetDateFormatW(LOCALE_USER_DEFAULT, 0, &st, NULL, szDate, _countof(szDate)); in WherePrintPath()
114 ConResPrintf(StdOut, IDS_FILE_INFO, FileSize.QuadPart, szDate, szTime, szPath); in WherePrintPath()
/reactos/base/applications/mscutils/eventvwr/
H A Devtdetctl.c55 WCHAR szDate[MAX_PATH]; in DisplayEvent() local
71 ListView_GetItemText(hwndListView, iItem, 1, szDate, ARRAYSIZE(szDate)); in DisplayEvent()
79 SetDlgItemTextW(hDlg, IDC_EVENTDATESTATIC, szDate); in DisplayEvent()
274 WCHAR szDate[MAX_PATH]; in CopyEventEntry() local
295 size += GetDlgItemTextW(hWnd, IDC_EVENTDATESTATIC, szDate, ARRAYSIZE(szDate)); in CopyEventEntry()
320 szDate, szTime, szUser, szComputer, evtDesc); in CopyEventEntry()
/reactos/base/shell/explorer/
H A Dtrayclock.cpp398 WCHAR* szDate = new WCHAR[iDateLength]; in UpdateWnd() local
403 szDate, in UpdateWnd()
408 szDate); in UpdateWnd()
410 delete[] szDate; in UpdateWnd()
/reactos/base/applications/notepad/
H A Ddialog.c618 TCHAR szDate[MAX_STRING_LEN]; in DIALOG_EditTimeDate() local
623 GetTimeFormat(LOCALE_USER_DEFAULT, 0, &st, NULL, szDate, MAX_STRING_LEN); in DIALOG_EditTimeDate()
624 _tcscpy(szText, szDate); in DIALOG_EditTimeDate()
626 GetDateFormat(LOCALE_USER_DEFAULT, DATE_LONGDATE, &st, NULL, szDate, MAX_STRING_LEN); in DIALOG_EditTimeDate()
627 _tcscat(szText, szDate); in DIALOG_EditTimeDate()