MP3播放器无法正常工作的程序

时间:2016-03-13 10:51:53

标签: mp3

#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:没有这样的文件或目录

1 个答案:

答案 0 :(得分:0)

正如编译器已经告诉过你的那样,你试图引用的标题不存在(在那个位置)。

检查您是否输入了正确的名称。