?? audio_thread.h
字號:
/* * audio_thread.h *//* Success and failure definitions for the thread */#define AUDIO_THREAD_SUCCESS ((void *) 0 )#define AUDIO_THREAD_FAILURE ((void *) -1 )/* Thread environment definition (i.e. what it needs to operate) */typedef struct audio_thread_env{ int quit; // Thread will run as long as quit = 0 char *engineName; // Name of the engine for audio codecs}audio_thread_env;/* Function prototypes */void *audio_thread_fxn(void *envByRef);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -