2025-12-17 22:56:15 +09:00
|
|
|
#ifndef __MPANEL_H__
|
|
|
|
|
#define __MPANEL_H__
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
|
|
/* Milsko */
|
|
|
|
|
#include <MDE/Foundation.h>
|
|
|
|
|
#include <Mw/Milsko.h>
|
|
|
|
|
|
|
|
|
|
/* External */
|
2025-12-24 23:42:12 +09:00
|
|
|
#include <xemil.h>
|
2025-12-17 22:56:15 +09:00
|
|
|
|
|
|
|
|
/* Standard */
|
|
|
|
|
#include <dlfcn.h>
|
2025-12-23 22:29:18 +09:00
|
|
|
#include <unistd.h>
|
2025-12-17 22:56:15 +09:00
|
|
|
|
|
|
|
|
/* main.c */
|
|
|
|
|
extern MwWidget window, box;
|
|
|
|
|
|
|
|
|
|
/* module.c */
|
|
|
|
|
void load_modules(void);
|
|
|
|
|
|
|
|
|
|
#endif
|