Group: String - Library: shlwapi
Time in milliseconds represented as string (e.g. 1 hour 24 min 36 sec)
int StrFromTimeInterval(
LPTSTR pszOut,
UINT cchMax,
DWORD dwTimeMS,
int digits
);
DECLARE INTEGER StrFromTimeInterval IN Shlwapi;
STRING @ pszOut,;
INTEGER cchMax,;
INTEGER dwTimeMS,;
INTEGER digits
pszOut [out] Pointer to a character buffer that receives the converted string.
cchMax [in] Size of pszOut, in characters. If cchMax is set to zero, StrFromTimeInterval will return the minimum size of the character buffer needed to hold the converted string. In this case, pszOut will not contain the converted string.
dwTimeMS [in] Time interval, in milliseconds.
digits [in] Maximum number of digits to be represented in pszOut.
Returns the number of characters in pszOut, excluding the NULL terminator.
An example of this function"s return: 3 hour 07 min 21 sec