-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy patheditor_settings.h
More file actions
23 lines (20 loc) · 881 Bytes
/
editor_settings.h
File metadata and controls
23 lines (20 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/******************************************************************************
* EditorSettings *
******************************************************************************/
//Public Attributes
//<SUBCLASS ATTRIBUTES HERE> ex: #define MUIA_EditorSettings_{Attribute} 0x80430A01
#define MUIA_EditorSettings_IDE 0x80430A01
#define MUIA_EditorSettings_Compiler 0x80430A02
#define MUIA_EditorSettings_Output 0x80430A03
#define MUIA_EditorSettings_RunStack 0x80430A04
//Public Methods
//<SUBCLASS METHODS HERE> ex: #define MUIM_EditorSettings_{Method} 0x80430A01
//Public Functions
struct MUI_CustomClass* MUI_Create_EditorSettings(void);
//<YOUR SUBCLASS FUNCTIONS HERE>
//getting MUIA_EditorSettings_Compiler will return one of these below:
enum {
COMPILER_GCC,
COMPILER_VBCC,
COMPILER_SAS_C
};