aboutsummaryrefslogtreecommitdiff
path: root/examples/system/dynlink/library/dll_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/system/dynlink/library/dll_common.h')
-rw-r--r--examples/system/dynlink/library/dll_common.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/examples/system/dynlink/library/dll_common.h b/examples/system/dynlink/library/dll_common.h
index 315a993..6606bda 100644
--- a/examples/system/dynlink/library/dll_common.h
+++ b/examples/system/dynlink/library/dll_common.h
@@ -19,13 +19,12 @@ typedef struct {
DRAWENV draw;
uint32_t ot[OT_LEN];
uint8_t p[PACKET_LEN];
-} DB;
+} Framebuffer;
typedef struct {
- uint16_t xres, yres;
- DB db[2];
- uint32_t db_active;
- uint8_t *db_nextpri;
-} CONTEXT;
+ Framebuffer db[2];
+ int db_active;
+ uint8_t *db_nextpri;
+} RenderContext;
#endif