Home
last modified time | relevance | path

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

/reactos/dll/win32/shell32/
H A Dutils.cpp1172 _In_ LONGLONG llValue, in Int64ToStr() argument
1179 BOOL bMinus = (llValue < 0); in Int64ToStr()
1182 llValue = -llValue; in Int64ToStr()
1190 szBuff[ich++] = (WCHAR)(L'0' + (llValue % 10)); in Int64ToStr()
1191 llValue /= 10; in Int64ToStr()
1192 } while (llValue != 0 && ich < _countof(szBuff) - 1); in Int64ToStr()
1277 _In_ LONGLONG llValue, in Int64ToString() argument
1288 Int64ToStr(llValue, szValue, _countof(szValue)); in Int64ToString()
/reactos/sdk/include/reactos/
H A Dundocshell.h822 _In_ LONGLONG llValue,