class TObjectId;
Description
Encapsulates the Id of a kernel object.
Members
Defined in TObjectId
:
Id()
, TObjectId()
, TObjectId()
, operator TUint()
, operator!=()
, operator==()
inline TObjectId(TUint64 anId);
Description
Constructor taking an unsigned integer value.
Parameters
TUint64 anId |
The value of the object id.
|
|
inline TUint64 Id() const;
Description
Return the ID as a 64 bit integer
Return value
inline operator TUint() const;
Description
Conversion operator invoked by the compiler when a TObjectId type is passed to a function that is prototyped to take a TUint
type.
Return value
See also:
inline TBool operator==(TObjectId aId) const;
Description
Tests whether this thread Id is equal to the specified Id.
Parameters
TObjectId aId |
The thread Id to be compared with this thread Id.
|
|
Return value
TBool
|
True, if the thread Ids are equal; false otherwise.
|
|
inline TBool operator!=(TObjectId aId) const;
Description
Tests whether this thread Id is unequal to the specified thread Id.
Parameters
TObjectId aId |
The thread Id to be compared with this thread Id.
|
|
Return value
TBool
|
True, if the thread Ids are unequal; false otherwise.
|
|