00001
00002
00003
00004
00005
00006
00007 #import <Foundation/NSMutableData.h>
00008
00009 @interface NSMutableData (NSSerialization)
00010 - (void)serializeInt:(int)fp8;
00011 - (void)serializeInts:(int *)fp8 count:(unsigned int)fp12;
00012 - (void)serializeInt:(int)fp8 atIndex:(unsigned int)fp12;
00013 - (void)serializeInts:(int *)fp8 count:(unsigned int)fp12 atIndex:(unsigned int)fp16;
00014 - (void)serializeAlignedBytesLength:(unsigned int)fp8;
00015 - (void)serializeAlignedBytes:(void *)fp8 length:(unsigned int)fp12;
00016 @end
00017