Как добавить fmod в мою библиотеку, чтобы я мог использовать этот конкретный код
Я пытаюсь применить код, используя библиотеку fmod, и у меня ничего не получается
Я пытался загрузить fmod API, но я не знаю, что делать дальше
#include <conio.h>
#include "inc/fmod.h"
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();
}
У меня эрор
new 1.c:2:23: fatal error: inc/fmod.h: No such file or directory
#include "inc/fmod.h"