瀉藥!
linux下怎麼會有windows.h檔案,不會有的!
你的目的只是想要播放音樂而已,是吧,看樣子是要用純C語言來進行驅動播放,這個對於初學者來說還是有點難度的。
具體實現
主介面
播放流程
核心程式碼:
int main()
{
char c;
int i = 0;
while(1)
menu();
c = tolower(getchar());
menu_choice(c,i);
if (c == "q")
return 0;
}
void play(char *p)
pid = fork();
if (pid == 0)
execlp("rhythmbox","rhythmbox",p,NULL);
瀉藥!
linux下怎麼會有windows.h檔案,不會有的!
你的目的只是想要播放音樂而已,是吧,看樣子是要用純C語言來進行驅動播放,這個對於初學者來說還是有點難度的。
具體實現
主介面
播放流程
核心程式碼:
int main()
{
char c;
int i = 0;
while(1)
{
menu();
c = tolower(getchar());
menu_choice(c,i);
if (c == "q")
return 0;
}
return 0;
}
void play(char *p)
{
pid = fork();
if (pid == 0)
{
execlp("rhythmbox","rhythmbox",p,NULL);
}
}