about dialog

This commit is contained in:
Nishi 2025-11-25 05:31:58 +09:00
commit 6a27bfaf28
Signed by: nishi
GPG key ID: 27EF69B208EB9343
9 changed files with 92 additions and 9 deletions

View file

@ -0,0 +1,18 @@
#ifndef __MDE_CORE_ABOUTIALOG_H__
#define __MDE_CORE_ABOUTIALOG_H__
#include <MDE/MachDep.h>
#ifdef __cplusplus
extern "C" {
#endif
#include <Mw/Milsko.h>
MwWidget MDEAboutDialog(MwWidget handle, const char* appname, const char* version, MwLLPixmap pixmap);
#ifdef __cplusplus
}
#endif
#endif

View file

@ -1,5 +1,5 @@
#ifndef __MDE_DIRECTORY_H__
#define __MDE_DIRECTORY_H__
#ifndef __MDE_CORE_DIRECTORY_H__
#define __MDE_CORE_DIRECTORY_H__
#include <MDE/MachDep.h>

View file

@ -1,5 +1,5 @@
#ifndef __MDE_FILE_H__
#define __MDE_FILE_H__
#ifndef __MDE_CORE_FILE_H__
#define __MDE_CORE_FILE_H__
#include <MDE/MachDep.h>

View file

@ -1,5 +1,5 @@
#ifndef __MDE_STRING_H__
#define __MDE_STRING_H__
#ifndef __MDE_CORE_STRING_H__
#define __MDE_CORE_STRING_H__
#include <MDE/MachDep.h>

View file

@ -1,5 +1,5 @@
#ifndef __MDE_USERS_H__
#define __MDE_USERS_H__
#ifndef __MDE_CORE_USERS_H__
#define __MDE_CORE_USERS_H__
#include <MDE/MachDep.h>

View file

@ -7,6 +7,7 @@
#include <MDE/Core/String.h>
#include <MDE/Core/Users.h>
#include <MDE/Core/Directory.h>
#include <MDE/Core/AboutDialog.h>
#include <MDE/Audio/Audio.h>