blob: 101b85b67e9135f71b0aea09579bc586a6a140d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/** \file internal.h
* \brief Header: internal functions and variables
*/
#ifndef MC__SUBSHELL_INTERNAL_H
#define MC__SUBSHELL_INTERNAL_H
/* TODO: merge content of layout.h here */
/*** typedefs(not structures) and defined constants **********************************************/
/*** enums ***************************************************************************************/
/*** structures declarations (and typedefs of structures)*****************************************/
/*** global variables defined in .c file *********************************************************/
/*** declarations of public functions ************************************************************/
const vfs_path_t *subshell_get_cwd (void);
void subshell_handle_cons_saver (void);
int subshell_get_mainloop_quit (void);
void subshell_set_mainloop_quit (const int param_quit);
/*** inline functions ****************************************************************************/
#endif /* MC__SUBSHELL_INTERNAL_H */
|