blob: eacf976ec49cd331fb693eae942f0ab6c8f7ffea (
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
|
/** \file panelize.h
* \brief Header: External panelization module
*/
#ifndef MC__PANELIZE_H
#define MC__PANELIZE_H
/*** typedefs(not structures) and defined constants **********************************************/
/*** enums ***************************************************************************************/
/*** structures declarations (and typedefs of structures)*****************************************/
/*** global variables defined in .c file *********************************************************/
/*** declarations of public functions ************************************************************/
void external_panelize_cmd (void);
void external_panelize_load (void);
void external_panelize_save (void);
void external_panelize_free (void);
/*** inline functions ****************************************************************************/
#endif /* MC__PANELIZE_H */
|