sound.h
来自「These libraries are designed for use wit」· C头文件 代码 · 共 31 行
H
31 行
/*
* 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 + =
减小字号Ctrl + -
显示快捷键?