soundinstance.xs

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

XS
59
字号
/* ==================================================================== * 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 $ */#include "EXTERN.h"#include "perl.h"#include "XSUB.h"#include "SWF.h"#include "perl_swf.h"MODULE = SWF::SoundInstance    PACKAGE = SWF::SoundInstance     PREFIX = SWFSoundInstance_PROTOTYPES: ENABLEvoidSWFSoundInstance_DESTROY(inst)	SWF::SoundInstance	inst	CODE:        S_DEBUG(2, fprintf(stderr, "SoundInstance DESTROY CALLED\n"));        destroySWFSoundInstance(inst);voidSWFSoundInstance_noMultiple(inst)	SWF::SoundInstance inst	CODE:	SWFSoundInstance_setNoMultiple(inst);voidSWFSoundInstance_loopInPoint(inst, point)	SWF::SoundInstance inst	int point	CODE:	SWFSoundInstance_setLoopInPoint(inst, point);voidSWFSoundInstance_loopOutPoint(inst, point)	SWF::SoundInstance inst	int point	CODE:	SWFSoundInstance_setLoopOutPoint(inst, point);voidSWFSoundInstance_loopCount(inst, count)	SWF::SoundInstance inst	int count	CODE:	SWFSoundInstance_setLoopCount(inst, count);	

⌨️ 快捷键说明

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