Phase 0: scaffold e_iwd Enlightenment module

Meson build, module entry points, and stub layout for the iwd backend
(D-Bus client, gadget, popup, config, UI widgets). Bodies are TODOs;
this compiles against EFL/E headers but performs no D-Bus work yet.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
nemunaire 2026-04-08 22:33:58 +07:00
commit b9eb5de878
29 changed files with 628 additions and 0 deletions

20
src/e_mod_config.h Normal file
View file

@ -0,0 +1,20 @@
#ifndef E_MOD_CONFIG_H
#define E_MOD_CONFIG_H
typedef struct _E_Iwd_Config E_Iwd_Config;
struct _E_Iwd_Config
{
int auto_connect;
int show_hidden;
int refresh_interval;
char *preferred_adapter;
};
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