#include <conio.h>
#include "inc/fmod.hpp"
FSOUND_SAMPLE* handle;
int main ()
{
// init FMOD sound system
FSOUND_Init (44100, 32, 0);
// load and play mp3
handle=FSOUND_Sample_Load (0,"my.mp3",0, 0, 0);
FSOUND_PlaySound (0,handle);
// wait until the users hits a key to end the app
while (!_kbhit())
{
}
// clean up
FSOUND_Sample_Free (handle);
FSOUND_Close();
}
}
此程序未在dev c ++中编译。
ERROR-2 24 E:\编码软件\ dev c ++ \ Dev-Cpp \ Untitled1.cpp [错误] inc / fmod.hpp:没有这样的文件或目录
答案 0 :(得分:0)
正如编译器已经告诉过你的那样,你试图引用的标题不存在(在那个位置)。
检查您是否输入了正确的名称。