This commit is contained in:
Nishi 2025-11-30 08:00:44 +09:00
commit 1bd37963c8
Signed by: nishi
GPG key ID: 27EF69B208EB9343
7 changed files with 170 additions and 0 deletions

26
mimview/mimview.h Normal file
View file

@ -0,0 +1,26 @@
#ifndef __MIMVIEW_H__
#define __MIMVIEW_H__
#define VERSION "0.0.0"
#include "config.h"
/* Milsko */
#include <MDE/Foundation.h>
#include <Mw/Milsko.h>
/* External */
/* Standard */
#include <sys/stat.h>
#include <stdlib.h>
#include <string.h>
/* main.c */
extern MwWidget window, menu;
extern MwLLPixmap pxprojector;
/* ui.c */
void ui_init(void);
#endif