summaryrefslogtreecommitdiff
path: root/source/platform/platform.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/platform/platform.h')
-rw-r--r--source/platform/platform.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/source/platform/platform.h b/source/platform/platform.h
deleted file mode 100644
index da8e065..0000000
--- a/source/platform/platform.h
+++ /dev/null
@@ -1,56 +0,0 @@
1#ifndef PLATFORM_H
2#define PLATFORM_H
3
4#define NIL 0
5
6#include <X11/X.h>
7#include <X11/Xlib.h>
8 #include <X11/keysym.h>
9#include <time.h>
10#include <unistd.h>
11
12typedef struct WindowProperties WindowProperties;
13struct WindowProperties
14{
15 i32 x;
16 i32 y;
17 u32 height;
18 u32 width;
19 u32 border_width;
20 i32 window_depth;
21 u32 window_class;
22 u64 value_mask;
23
24};
25
26typedef struct vertex vertex;
27
28struct vertex
29{
30 i32 x;
31 i32 y;
32 i32 z;
33};
34
35typedef struct display_pos display_pos;
36
37struct display_pos
38{
39 i32 x;
40 i32 y;
41
42};
43
44typedef struct pos pos;
45struct pos
46{
47 i32 x;
48 i32 y;
49 i32 z;
50
51} ;
52
53
54
55
56#endif /* PLATFORM_H */