2021-08-03 13:37:06 +08:00
|
|
|
/* spawn.h -- various operating system access commands */
|
2021-08-13 11:06:58 +08:00
|
|
|
#ifndef _SPAWN_H_
|
|
|
|
#define _SPAWN_H_
|
2021-08-03 13:37:06 +08:00
|
|
|
|
2021-08-13 11:06:58 +08:00
|
|
|
#include "names.h" /* BINDABLE() */
|
2021-08-03 13:37:06 +08:00
|
|
|
|
|
|
|
/* Bindable functions */
|
|
|
|
BINDABLE( spawncli) ;
|
|
|
|
BINDABLE( bktoshell) ;
|
|
|
|
BINDABLE( spawn) ;
|
|
|
|
BINDABLE( execprg) ;
|
|
|
|
BINDABLE( pipecmd) ;
|
|
|
|
BINDABLE( filter_buffer) ;
|
|
|
|
|
2013-05-20 13:16:08 +08:00
|
|
|
void rtfrmshell( void) ;
|
2021-08-03 13:37:06 +08:00
|
|
|
|
2021-08-13 11:06:58 +08:00
|
|
|
#endif
|
2021-08-03 13:37:06 +08:00
|
|
|
/* end of spawn.h */
|