diff options
Diffstat (limited to 'src/ncmpc.h')
-rw-r--r-- | src/ncmpc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ncmpc.h b/src/ncmpc.h index 4118456a1..dec530dc2 100644 --- a/src/ncmpc.h +++ b/src/ncmpc.h @@ -46,4 +46,10 @@ void D(char *format, ...); #define DEFAULT_STATUS_FORMAT "[%artist% - ]%title%|%shortfile%" #define STATUS_FORMAT (options.status_format ? options.status_format : DEFAULT_STATUS_FORMAT) +/* sigstop key (Ctrl-Z) */ +#define KEY_SIGSTOP 26 + +/* send SIGSTOP */ +void sigstop(void); + #endif /* NCMPC_H */ |