Location:
btsdp.h
Link against: sdpdatabase.lib
class SdpUtil;
Integer Putter/Getter Utility Class
Utility class for putting integer values into/getting integer values out of descriptors
Defined in SdpUtil
:
GetUint()
, GetUint128()
, GetUint64()
, PutUint()
, PutUint128()
, PutUint64()
static IMPORT_C TUint GetUint(const TDesC8 &aData);
Gets an unsigned integer from a descriptor.
|
|
static IMPORT_C void PutUint(TUint8 *aPtr, TInt64 aInt, TInt aNumberOfBytes);
Puts an unsigned integer into a descriptor.
|
static IMPORT_C void PutUint64(TUint8 *aPtr, const TUint64 &aNumber);
|
static IMPORT_C void GetUint64(const TDesC8 &aData, TUint64 &aNumber);
|
static IMPORT_C void PutUint128(TUint8 *aPtr, const TUint64 &aLo, const TUint64 &aHi);
Puts two unsigned 64 bit integers into a descriptor.
|