test01.c

来自「Ming is a library for generating Macrome」· C语言 代码 · 共 16 行

C
16
字号
#include <libming.h>#include <stdlib.h>int main(){	SWFMovie m = newSWFMovieWithVersion(8);	SWFShape shape1 = newSWFShape();	SWFShape shape2 = newSWFShape();	SWFShape_useVersion(shape2, SWF_SHAPE4);	SWFMovie_add(m, (SWFBlock)shape1);	SWFMovie_add(m, (SWFBlock)shape2);	SWFMovie_save(m, "test01.swf");	return EXIT_SUCCESS;}

⌨️ 快捷键说明

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