Le 27 janv. 09 à 06:28, Graham Cox a écrit :
On 27 Jan 2009, at 4:17 pm, Adam Venturella wrote:
Thanks! I knew I was doing to many steps!
uint key = *(uint*)&buffer;
You will also need to consider byte-ordering if your app or the data
could be used on different architectures. If for example your input
data is known to be big-endian, you'll probably want to do this:
uint key = NSSwapBigIntToHost( *(uint*)&buffer );
Or without the cast:
uint key = OSReadBigInt32(buffer, 0)
_______________________________________________
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to arch...@mail-archive.com