How to get the machine uid of the Device
Article Metadata
Headers and Library
#include <hal.h>
LIBRARY hal.lib
Getting the Machine UID of the Device
// Returns the machine Uid of the target device
TInt GetDeviceMachineUid()
{
TInt machineUid = 0;
HAL::Get(HALData::EMachineUid, machineUid);
return machineUid;
}


(no comments yet)