📄 swf.xs
字号:
/* ==================================================================== * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -