mirror of https://github.com/wb2osz/direwolf.git
11 lines
201 B
C
11 lines
201 B
C
|
|
||
|
#ifndef AUDIO_PTT_H
|
||
|
#define AUDIO_PTT_H 1
|
||
|
|
||
|
#if __WIN32__
|
||
|
extern HANDLE start_ptt_thread ( struct audio_s *pa, int ch );
|
||
|
#else
|
||
|
extern int start_ptt_thread ( struct audio_s *pa, int ch );
|
||
|
#endif
|
||
|
|
||
|
#endif
|