Re: UInt16? UInt32? What is this?

2002-07-11 Thread Brandt Haagensen
Try Control button and right double click its faster. (if activate browser is checked in settings) Mark Wilden [EMAIL PROTECTED] wrote in message news:90752@palm-dev-forum... From: Régis Daniel de Oliveira [EMAIL PROTECTED] I'd like to know what mean UInt16 and UInt32 If you're using

Re: UInt16? UInt32? What is this?

2002-07-11 Thread Brandt Haagensen
Oops double left click. 8 hours sleep and a comfortable 75 degrees (no excuse) Brandt Haagensen [EMAIL PROTECTED] wrote in message news:90821@palm-dev-forum... Try Control button and right double click its faster. (if activate browser is checked in settings) Mark Wilden [EMAIL PROTECTED]

Re: UInt16? UInt32? What is this?

2002-07-11 Thread Mark Wilden
From: Aaron Ardiri [EMAIL PROTECTED] i guess short short is stupid since i means long anyhow :P [in theory] Short short. Now that's what I call short. But why stop there? struct { unsigned reallyReallyShort : 0.5; }; -- For information on using the Palm Developer Forums, or

Re: UInt16? UInt32? What is this?

2002-07-11 Thread Marco Pantaleoni
On Thu, Jul 11, 2002 at 10:41:13AM -0700, Mark Wilden wrote: Short short. Now that's what I call short. But why stop there? struct { unsigned reallyReallyShort : 0.5; }; hmmm... fractional bitfields... don't say it too loud... you never know where ANSI C committee members are

Re: UInt16? UInt32? What is this?

2002-07-11 Thread Keith Rollin
At 8:17 PM +0200 7/11/02, Marco Pantaleoni wrote: On Thu, Jul 11, 2002 at 10:41:13AM -0700, Mark Wilden wrote: Short short. Now that's what I call short. But why stop there? struct { unsigned reallyReallyShort : 0.5; }; hmmm... fractional bitfields... don't say it too

Re: UInt16? UInt32? What is this?

2002-07-11 Thread Marco Pantaleoni
On Thu, Jul 11, 2002 at 01:51:00PM -0700, Keith Rollin wrote: hmmm... fractional bitfields... don't say it too loud... you never know where ANSI C committee members are wandering... Actually, I think that fractional bitfields are used in arithmetic compression. It's a bit like Huffman

UInt16? UInt32? What is this?

2002-07-10 Thread Régis Daniel de Oliveira
Hy all! I'd like to know what mean UInt16 and UInt32. I looked at Palm Docs, but can't find nothing that explain me these things are. Thanks! -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: UInt16? UInt32? What is this?

2002-07-10 Thread Leon Heller
From: Régis Daniel de Oliveira [EMAIL PROTECTED] Reply-To: Palm Developer Forum [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Subject: UInt16? UInt32? What is this? Date: Wed, 10 Jul 2002 08:59:31 -0300 Hy all! I'd like to know what mean UInt16 and UInt32. I looked at Palm

RE: UInt16? UInt32? What is this?

2002-07-10 Thread Idries Hamadi
: UInt16? UInt32? What is this? Hy all! I'd like to know what mean UInt16 and UInt32. I looked at Palm Docs, but can't find nothing that explain me these things are. Thanks! -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support

Re: UInt16? UInt32? What is this?

2002-07-10 Thread jose luis garcia
Developer Forum [EMAIL PROTECTED] Subject: UInt16? UInt32? What is this? Date: Wed, 10 Jul 2002 08:59:31 -0300 Hy all! I'd like to know what mean UInt16 and UInt32. I looked at Palm Docs, but can't find nothing that explain me these things are. Thanks! -- For information on using the Palm Developer

Re: UInt16? UInt32? What is this?

2002-07-10 Thread Mark Wilden
From: Régis Daniel de Oliveira [EMAIL PROTECTED] I'd like to know what mean UInt16 and UInt32 If you're using CodeWarrior, highlight one of these words, then right click and choose Go to typdef declaration of UInt32. It's a great CodeWarrior feature. -- For information on using the Palm

RE: UInt16? UInt32? What is this?

2002-07-10 Thread Brian Smith
On Wed, 10 Jul 2002, Idries Hamadi wrote: They're just shorter ways of writing unsigned blah blah. Also, it means that you can change their definitions easily on systems where (for example) short is not 16-bits long and somthing else is. IIRC, unsigned long on a DEC Alpha is 64 bits, so

RE: UInt16? UInt32? What is this?

2002-07-10 Thread Aaron Ardiri
On Wed, 10 Jul 2002, Idries Hamadi wrote: UInt16 is a 16-bit unsigned integer, I don't know off the top of my head, but it's probably typedefed somthing like: typedef unsigned short int UInt16; typedef unsigned short UInt16; :) short int can mean something else :) // az [EMAIL PROTECTED]

Re: UInt16? UInt32? What is this?

2002-07-10 Thread Mark Wilden
From: Aaron Ardiri [EMAIL PROTECTED] typedef unsigned short UInt16; :) short int can mean something else :) Actually, I don't think so. short int and short are equivalent, in my understanding. -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: UInt16? UInt32? What is this?

2002-07-10 Thread Aaron Ardiri
On Wed, 10 Jul 2002, Mark Wilden wrote: typedef unsigned short UInt16; :) short int can mean something else :) Actually, I don't think so. short int and short are equivalent, in my understanding. http://usgibm.nersc.gov/vac/ref/rucldint.htm ok :) your lucky *g* was confusing it