⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sound.h

📁 These libraries are designed for use with Microsoft Visual C++ version 6.0. Install them by running
💻 H
字号:
/*
 * File: sound.h
 * Header file for Microsoft Visual C
 * Version: 4.0
 * Last modified on 1/31/97 by magi
 * ------------------------------------------------------
 * This interface defines a function for playing a named
 * sound resource.
 */

#ifndef _sound_h
#define _sound_h

#include "genlib.h"


/*
 * Function: PlayNamedSound
 * Usage: PlayNamedSound("name");
 * ------------------------------
 * This function looks for a sound file with the given name
 * (and extension .WAV, in the current directory)
 * and plays the corresponding sound if the file is found.
 * The function generates an error if the file cannot be
 * found or the sound facility is unimplemented for the platform.
 */

void PlayNamedSound(string name);

#endif

⌨️ 快捷键说明

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