Developer's Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
virtual P6R::P6ERR P6R::p6ISafeString::uint64ToString ( P6UINT64  value,
P6CHAR pBuffer,
P6SIZE  cBuffer,
P6UINT32  radix,
P6SIZE pcWritten 
)
pure virtual

Convert an unsigned 64 bit integer to a P6CHAR string with the specified radix.

Radix's of 2 to 26 are supported.

Parameters
value[ in ] The 64 bit unsigned integer to convert into a string.
pBuffer[ out ] The address of a buffer in which to place the resulting string.
cBuffer[ in ] The size of pBuffer in characters.
radix[ in ] The radix to use for the conversion. The valid range is 2 through 36. Typical values are 8 (octal), 10 (decimal), and 16 (hex).
pcWritten[ out ] The address of a P6SIZE which, if not NULL, will contain the number of characters placed in pBuffer.
Returns