summaryrefslogtreecommitdiffhomepage
path: root/public/tools/make_app/Steps.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-04-19 08:40:12 +0200
committerGitHub <noreply@github.com>2025-04-19 08:40:12 +0200
commitf87797692777540eede1d4739199b444bd15340a (patch)
tree646ae3f61ebcd3f83c888912c5f72efc0a8c25b0 /public/tools/make_app/Steps.h
parentee1edba85ea13627871e1ed005931bd502b86ab8 (diff)
parent1740a0dff822d7666b8c1f056b6c411ef6b0f9fd (diff)
NeKernel: 0.0.10.0.1-release
# NeKernel: 0.0.1 ## Features (not all included): - New extended File System. - Kernel and Bootloader (NeKernel and BootZ) - Process Scheduler. - NeKernel's Preferred Executable Format. - SysChk. - Explicit Partition Map scheme. #### NOTE: The GPT scheme is in WiP! Please run NeKernel on QEMU!
Diffstat (limited to 'public/tools/make_app/Steps.h')
-rw-r--r--public/tools/make_app/Steps.h20
1 files changed, 13 insertions, 7 deletions
diff --git a/public/tools/make_app/Steps.h b/public/tools/make_app/Steps.h
index 76976dd3..51927def 100644
--- a/public/tools/make_app/Steps.h
+++ b/public/tools/make_app/Steps.h
@@ -12,15 +12,21 @@
#define kStepsExtension ".stp"
#define kStepsStrLen (256U)
+#define kStepsMagic " pls"
+#define kStepsMagicLen (4U)
+#define kStepsVersion (0x0100)
+
+#define kStepsMime "ne-application-kind/steps"
+
struct STEPS_COMMON_RECORD final
{
- SInt32 setup_magic;
- Char setup_name[kStepsStrLen];
- Char setup_company[kStepsStrLen];
- Char setup_author[kStepsStrLen];
- SInt32 setup_version;
- SInt32 setup_pages;
- SInt32 setup_check_page, setup_eula_page;
+ Char magic[kStepsMagicLen];
+ Char name[kStepsStrLen];
+ Char company[kStepsStrLen];
+ Char author[kStepsStrLen];
+ SInt32 version;
+ SInt32 pages;
+ SInt32 check_page, eula_page;
};
#endif // ifndef APPS_STEPS_H \ No newline at end of file