23 lines
553 B
C
23 lines
553 B
C
|
|
//
|
||
|
|
// IframeInfo.h
|
||
|
|
// myhome
|
||
|
|
//
|
||
|
|
// Created by user on 13-2-19.
|
||
|
|
//
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
@interface IframeInfo : NSObject
|
||
|
|
@property (nonatomic,assign) int iframe_index;
|
||
|
|
@property (nonatomic,assign) int iframe_time;
|
||
|
|
@property (nonatomic,assign) long long bag_num;
|
||
|
|
@property (nonatomic,assign) long long bag_receive;
|
||
|
|
@property (nonatomic,assign) Boolean isFull;
|
||
|
|
@property (nonatomic,assign) int cur_len;
|
||
|
|
@property (nonatomic,assign) int bb_len;
|
||
|
|
@property (nonatomic,assign) Byte *bb;
|
||
|
|
@property (nonatomic, assign) int codecMode;
|
||
|
|
|
||
|
|
@end
|