blob: 3b302eebffaa1629ddd5561fe672c3b0620a7603 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/**
Thu Oct 17 07:57:43 CEST 2024
(c) Amlal EL Mahrouss.
*/
#ifndef APPS_STEPS_H
#define APPS_STEPS_H
#include <Common.h>
#include <Framework.h>
#define kStepsExtension ".stp"
#define kStepsStrLen (256U)
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;
};
#endif // ifndef APPS_STEPS_H
|