swfaction.h

来自「flirt 一款纯c的flash解码程序。」· C头文件 代码 · 共 32 行

H
32
字号
/*
 Flirt, an SWF rendering library
 Copyright (c) 2004-2006 Dave Hayden <dave@opaque.net>
 All rights reserved.
 
 http://www.opaque.net/flirt/

 This code is distributed under the two-clause BSD license.
 Read the LICENSE file or visit the URL above for details
*/

#import <Foundation/Foundation.h>

#import <flirt-debug.h>

@interface SWFAction : NSObject
{
	ddAction* action;
}

+ (id)actionWithDDAction:(ddAction*)action;
- (id)initWithDDAction:(ddAction*)action;

- (int)length;
- (NSString*)opcodeAtOffset:(int)index;
- (SWFAction*)functionAtOffset:(int)index;

- (void)setBreakpoint:(int)line;
- (void)clearBreakpoint:(int)line;

@end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?