12345678910111213141516171819202122232425 |
- /** \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 */
|