gameswf_sound.h

来自「一个开源的嵌入式flash播放器的源代码」· C头文件 代码 · 共 31 行

H
31
字号
// gameswf_sound.h   -- Thatcher Ulrich, Vitaly Alexeev// This source code has been donated to the Public Domain.  Do// whatever you want with it.#ifndef GAMESWF_SOUND_H#define GAMESWF_SOUND_H#include "gameswf_impl.h"namespace gameswf{	struct sound_sample_impl : public sound_sample	{		int	m_sound_handler_id;		sound_sample_impl(int id)			:			m_sound_handler_id(id)		{		}		virtual ~sound_sample_impl();	};}#endif // GAMESWF_SOUND_H

⌨️ 快捷键说明

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