Home
last modified time | relevance | path

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

/reactos/base/applications/network/ipconfig/
H A Dipconfig.c141 INT DateCchSize, TimeCchSize, TotalCchSize, i; in timeToStr() local
170 TotalCchSize = DateCchSize + TimeCchSize; in timeToStr()
173 DateTimeString = (PTSTR)HeapAlloc(ProcessHeap, 0, TotalCchSize * sizeof(TCHAR)); in timeToStr()
180 …GetDateFormat(LOCALE_USER_DEFAULT, DATE_LONGDATE, &SystemTime, NULL, DateTimeString, TotalCchSize); in timeToStr()
186 TotalCchSize -= i; in timeToStr()
189 if (GetTimeFormat(LOCALE_USER_DEFAULT, 0, &SystemTime, NULL, psz, TotalCchSize)) in timeToStr()