utilunix.h 878 B

12345678910111213141516171819202122232425
  1. /** \file execute.h
  2. * \brief Header: execution routines
  3. */
  4. #ifndef MC__UTILUNIX_H
  5. #define MC__UTILUNIX_H
  6. /*** typedefs(not structures) and defined constants **********************************************/
  7. /* flags for shell_execute */
  8. #define EXECUTE_INTERNAL (1 << 0)
  9. #define EXECUTE_AS_SHELL (1 << 2)
  10. #define EXECUTE_HIDE (1 << 3)
  11. /*** enums ***************************************************************************************/
  12. /*** structures declarations (and typedefs of structures)*****************************************/
  13. /*** global variables defined in .c file *********************************************************/
  14. /*** declarations of public functions ************************************************************/
  15. /*** inline functions ****************************************************************************/
  16. #endif /* MC__UTILUNIX_H */