aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/comp/e_mod_main.h
blob: 3e01c52c97de3e9bec3c85c4d93046a7ba9b6e80 (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
30
31
32
#ifndef E_MOD_MAIN_H
#define E_MOD_MAIN_H

typedef struct _Config        Config;
typedef struct _Mod           Mod;


struct _Config
{
   int x;
};

struct _Mod
{
   E_Module        *module;
   
   E_Config_DD     *conf_edd;
   Config          *conf;
   
   E_Config_Dialog *config_dialog;
};

extern Mod *_comp_mod;

EAPI extern E_Module_Api e_modapi;

EAPI void *e_modapi_init     (E_Module *m);
EAPI int   e_modapi_shutdown (E_Module *m);
EAPI int   e_modapi_save     (E_Module *m);
EAPI int   e_modapi_info     (E_Module *m);

#endif