forked from 4coder-archive/4coder_fleury
-
Notifications
You must be signed in to change notification settings - Fork 0
/
4coder_fleury_ubiquitous.h
32 lines (28 loc) · 970 Bytes
/
4coder_fleury_ubiquitous.h
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
27
28
29
30
31
32
#ifndef FCODER_FLEURY_UBIQUITOUS_H
#define FCODER_FLEURY_UBIQUITOUS_H
enum keybinding_mode
{
KeyBindingMode_0,
KeyBindingMode_1,
KeyBindingMode_2,
KeyBindingMode_3,
KeyBindingMode_MAX
};
static keybinding_mode GlobalKeybindingMode;
static Face_ID global_styled_title_face = 0;
static Face_ID global_styled_label_face = 0;
static Face_ID global_small_code_face = 0;
static Rect_f32 global_cursor_rect = {0};
static Rect_f32 global_last_cursor_rect = {0};
static Rect_f32 global_mark_rect = {0};
static Rect_f32 global_last_mark_rect = {0};
static b32 global_dark_mode = 1;
static b32 global_battery_saver = 0;
static View_ID global_compilation_view = 0;
static b32 global_compilation_view_expanded = 0;
global Arena permanent_arena = {};
#define MemorySet memset
#define MemoryCopy memcpy
#define CalculateCStringLength strlen
#define S8Lit(s) string_u8_litexpr(s)
#endif // FCODER_FLEURY_UBIQUITOUS_H