Skip to content

Instantly share code, notes, and snippets.

@echristopherson
Created May 3, 2011 06:50
Show Gist options
  • Save echristopherson/952917 to your computer and use it in GitHub Desktop.
Save echristopherson/952917 to your computer and use it in GitHub Desktop.
Pixel24 DecodePixel24(NSCoder *coder)
{
Pixel24 p;
[coder decodeValueOfObjCType:@encode(int) at:&p.r];
[coder decodeValueOfObjCType:@encode(int) at:&p.g];
[coder decodeValueOfObjCType:@encode(int) at:&p.b];
return p;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment