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