swf.xs
来自「flash swf file player」· XS 代码 · 共 71 行
XS
71 行
/* ==================================================================== * 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: whamann $ * $Id: SWF.xs,v 1.12 2002/11/12 09:52:59 whamann Exp $ */#include "EXTERN.h"#include "perl.h"#include "XSUB.h"#include "SWF.h"#include "perl_swf.h"static void callXS (void (*subaddr)(CV* cv), CV *cv, SV **mark) { int items; dSP; PUSHMARK (mark); (*subaddr)(cv); PUTBACK; }MODULE = SWF PACKAGE = SWF PREFIX = Ming_PROTOTYPES: ENABLEINCLUDE: Boot.xshvoidfileOutputMethod(b, data) byte b void * datavoid Ming_setScale(scale) float scalevoid Ming_useSWFVersion(version) int version ALIAS: SWF::setVersion = 1voidMing_useConstants(flag) int flag CODE: Ming_useConstants(flag);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?