action.xs

来自「flash swf file player」· XS 代码 · 共 37 行

XS
37
字号
/* ==================================================================== * Copyright (c) 2000-2001 by Soheil Seyfaie. All rights reserved. * This program is free software; you can redistribute it and/or modify * it under the same terms as Perl itself. * ==================================================================== * * $Author: soheil $ * $Id: Action.xs,v 1.1 2001/09/24 00:37:41 soheil Exp $ */#include "EXTERN.h"#include "perl.h"#include "XSUB.h"#include "SWF.h"#include "perl_swf.h"MODULE = SWF::Action	PACKAGE = SWF::Action		PREFIX = SWFAction_PROTOTYPES: ENABLESWF::ActionSWFAction_new(package="SWF::Action", script)	char *package        char *script	CODE:	        RETVAL = compileSWFActionCode(script);        ST(0) = sv_newmortal();        sv_setref_pv(ST(0), package, (void*)RETVAL);voidSWFAction_DESTROY(action)	SWF::Action	action	CODE:        S_DEBUG(2, fprintf(stderr, "Action DESTROY CALLED\n"));

⌨️ 快捷键说明

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