summaryrefslogtreecommitdiffstats
path: root/mc/mc.h
diff options
context:
space:
mode:
Diffstat (limited to 'mc/mc.h')
-rw-r--r--mc/mc.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/mc/mc.h b/mc/mc.h
index 684219c7..4af932f0 100644
--- a/mc/mc.h
+++ b/mc/mc.h
@@ -24,7 +24,7 @@
#include "os_calls.h"
#include "defines.h"
-#define CURRENT_MOD_VER 2
+#define CURRENT_MOD_VER 3
struct mod
{
@@ -42,8 +42,8 @@ struct mod
int (*mod_get_wait_objs)(struct mod* v, tbus* read_objs, int* rcount,
tbus* write_objs, int* wcount, int* timeout);
int (*mod_check_wait_objs)(struct mod* v);
- long mod_dumby[100 - 9]; /* align, 100 minus the number of mod
- functions above */
+ tintptr mod_dumby[100 - 9]; /* align, 100 minus the number of mod
+ functions above */
/* server functions */
int (*server_begin_update)(struct mod* v);
int (*server_end_update)(struct mod* v);
@@ -67,7 +67,7 @@ struct mod
int (*server_set_pen)(struct mod* v, int style,
int width);
int (*server_draw_line)(struct mod* v, int x1, int y1, int x2, int y2);
- int (*server_add_char)(struct mod* v, int font, int charactor,
+ int (*server_add_char)(struct mod* v, int font, int character,
int offset, int baseline,
int width, int height, char* data);
int (*server_draw_text)(struct mod* v, int font,
@@ -85,14 +85,15 @@ struct mod
char* data, int data_len,
int total_data_len, int flags);
int (*server_bell_trigger)(struct mod* v);
- long server_dumby[100 - 25]; /* align, 100 minus the number of server
- functions above */
+ tintptr server_dumby[100 - 25]; /* align, 100 minus the number of server
+ functions above */
/* common */
- long handle; /* pointer to self as long */
- long wm;
- long painter;
- int sck;
+ tintptr handle; /* pointer to self as long */
+ tintptr wm;
+ tintptr painter;
+ tintptr si;
/* mod data */
+ int sck;
int width;
int height;
int bpp;