📄 sound.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: Sound.xs,v 1.2 2003/06/18 10:26:58 whamann Exp $ */#include "EXTERN.h"#include "perl.h"#include "XSUB.h"#include "SWF.h"#include "perl_swf.h"MODULE = SWF::Sound PACKAGE = SWF::Sound PREFIX = SWFSound_PROTOTYPES: ENABLESWF::SoundSWFSound_new(package="SWF::Sound", filename, flags=0) char *package char *filename int flags PREINIT: FILE *f; CODE: if (items < 1) fprintf(stderr, "SWF::Sound called with one argument\n\n"); if (!(f = fopen(filename, "rb"))) { fprintf(stderr, "Unable to open %s\n", filename); ST(0) = &sv_undef; } else { RETVAL = newSWFSound(f, flags); ST(0) = sv_newmortal(); sv_setref_pv(ST(0), package, (void*)RETVAL); }voiddestroySWFSound(sound) SWF::Sound sound ALIAS: SWF::Sound::DESTROY = 1 CODE: S_DEBUG(2, fprintf(stderr, "Sound DESTROY CALLED\n")); destroySWFSound(sound);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -