sndfailwin32.c

来自「Audacity是一款用於錄音和編輯聲音的、免費的開放源碼軟體。它可以執行於Ma」· C语言 代码 · 共 21 行

C
21
字号
/* sndfailwin32.c -- version of sndfail that puts up a message box *//* this should not be compiled into an snd library! handling snd_fail * is application specific */#include <windows.h>void snd_fail(char *msg){    MessageBox(0, msg, 0, 0);    exit(1);}void snd_warn(char *msg){    MessageBox(0, msg, 0, MB_OK);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?