What does one use to emulate the High Resolution Clie? Actually, as far as that goes, is there a special SDK for it, or does the basic Palm OS allow for high resolution on the Clie? > Actually, the Sony Clie does provide feature codes for determining the > model (just read this yesterday). ;) I don't know if any of the other > OEM devices provide this functionality though. See pg 21 in the Sony > Programmer's Companion manual and Incs/System/SonyHwrOEMIDs.h, both > part of the Clie SDK available from http://www.us.sonypdadev.com/ > > You could use something like so: > > UInt32 val; > ... > if(!FtrGet(sysFtrCreator, sysFtrNumOEMCompanyID, &val)) > { > if (val == sonyHwrOEMCompanyID_Sony) > { > if(!FtrGet(sysFtrCreator, sysFtrNumOEMDeviceID, &val)) > { > switch (val) > { > case sonyHwrOEMDeviceID_S300: > ... > case sonyHwrOEMDeviceID_N710C: > ... > > and so on. Don't know if feature sysFtrNumOEMDeviceID is available on > other devices; if so, you could take it out of the "if" cause that > tests for Sony. If that's the case, though, you'll have to guess at > to what the values of sysFtrNumOEMDeviceID are... > > On Mon, Aug 06, 2001 at 09:42:47AM -0400, Dave Lippincott wrote: > > No > > If you check for OS version and which services are available, you > > may be able to deduce some of the units. > > > > ----- Original Message ----- > > From: "Jeff Mitchell" <[EMAIL PROTECTED]> > > To: "Palm Developer Forum" <[EMAIL PROTECTED]> > > Sent: Monday, August 06, 2001 8:34 AM > > Subject: Identifying device? (Clie, specifically) > > > > > > > > > > Is there an easy way to determine what device you're running > > > on? (ie: Not OS version, thats easy. I need to know if I'm running > > > on a Symbol, or a Clie, or a Handera, etc). Its not a question of > > > "I should really just be checking for what services are > > > available".. I actually need to know what device I'm on :) > > > > > > jeff > > > > > > > > > > -- > > For information on using the Palm Developer Forums, or to > > unsubscribe, please see > > http://www.palmos.com/dev/tech/support/forums/ > > -- > For information on using the Palm Developer Forums, or to unsubscribe, > please see http://www.palmos.com/dev/tech/support/forums/ -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
