-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAWBuffer.h
More file actions
33 lines (29 loc) · 927 Bytes
/
Copy pathAWBuffer.h
File metadata and controls
33 lines (29 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* This header is generated by class-dump-z 0.2-0.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import <Foundation/NSObject.h>
@class NSMutableData;
@interface AWBuffer : NSObject {
unsigned long _offset;
unsigned long _chunkOffset;
unsigned long _size;
NSMutableData* _data;
}
@property(retain, nonatomic) NSMutableData* data;
@property(assign, nonatomic) unsigned long size;
@property(assign, nonatomic) unsigned long chunkOffset;
@property(assign, nonatomic) unsigned long offset;
-(void)clear;
-(void)initWithData:(id)data;
-(void)resetToOffset;
-(void)appendBytes:(const void*)bytes length:(unsigned long)length;
-(void)appendData:(id)data;
-(unsigned long)transferBytesWithLength:(unsigned long)length toBuffer:(void*)buffer;
-(id)dataWithLength:(unsigned)length;
-(void)setBytes:(char*)bytes length:(unsigned long)length;
-(void)dealloc;
-(id)init;
@end