Versioned descriptor for E_Iwd_Config with auto_connect, show_hidden, refresh_interval and preferred_adapter; load/save against the "module.iwd" domain. Stale or missing config falls back to defaults. The settings dialog UI is still a stub. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
437 B
C
21 lines
437 B
C
#ifndef E_MOD_CONFIG_H
|
|
#define E_MOD_CONFIG_H
|
|
|
|
typedef struct _E_Iwd_Config E_Iwd_Config;
|
|
|
|
struct _E_Iwd_Config
|
|
{
|
|
int version;
|
|
int auto_connect;
|
|
int show_hidden;
|
|
int refresh_interval;
|
|
const char *preferred_adapter; /* eina_stringshare */
|
|
};
|
|
|
|
extern E_Iwd_Config *e_iwd_config;
|
|
|
|
void e_iwd_config_load(void);
|
|
void e_iwd_config_save(void);
|
|
void e_iwd_config_dialog_show(void);
|
|
|
|
#endif
|