This commit is contained in:
Nishi 2025-11-16 08:26:03 +09:00
commit f8f37d42f3
Signed by: nishi
GPG key ID: 27EF69B208EB9343
3 changed files with 1 additions and 65 deletions

View file

@ -1,25 +0,0 @@
#ifndef __MDE_COMMANDLINE_H__
#define __MDE_COMMANDLINE_H__
#include <MDE/MachDep.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct _MDECommandLine MDECommandLine;
struct _MDECommandLine {
const char* short_opt;
const char* long_opt;
int need_arg;
void(*call)(const char* arg);
};
int MDECommandLineParse(MDECommandLine* param, int count, int argc, char** argv);
#ifdef __cplusplus
}
#endif
#endif

View file

@ -1,6 +1,6 @@
#ifndef __MDE_FOUNDATION_H__
#define __MDE_FOUNDATION_H__
#include <MDE/CommandLine.h>
#include <MDE/MachDep.h>
#endif