mirror of https://github.com/MidnightCommander/mc
26 lines
878 B
C
26 lines
878 B
C
|
/** \file execute.h
|
||
|
* \brief Header: execution routines
|
||
|
*/
|
||
|
|
||
|
#ifndef MC__UTILUNIX_H
|
||
|
#define MC__UTILUNIX_H
|
||
|
|
||
|
/*** typedefs(not structures) and defined constants **********************************************/
|
||
|
|
||
|
/* flags for shell_execute */
|
||
|
#define EXECUTE_INTERNAL (1 << 0)
|
||
|
#define EXECUTE_AS_SHELL (1 << 2)
|
||
|
#define EXECUTE_HIDE (1 << 3)
|
||
|
|
||
|
/*** enums ***************************************************************************************/
|
||
|
|
||
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
||
|
|
||
|
/*** global variables defined in .c file *********************************************************/
|
||
|
|
||
|
/*** declarations of public functions ************************************************************/
|
||
|
|
||
|
/*** inline functions ****************************************************************************/
|
||
|
|
||
|
#endif /* MC__UTILUNIX_H */
|