summaryrefslogtreecommitdiff
path: root/amiga/os3support.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2015-01-18 23:13:32 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2015-01-18 23:13:32 +0000
commit201bc569a4f40b1b2e53660cceb183570534b557 (patch)
tree7c0045a743c5a3ec58349a97e300c9e8a994a4e6 /amiga/os3support.h
parent2eb41ed77b2deb3a1c54c7b6b94a7c31fb603714 (diff)
downloadnetsurf-201bc569a4f40b1b2e53660cceb183570534b557.tar.gz
netsurf-201bc569a4f40b1b2e53660cceb183570534b557.tar.bz2
More OS3 compilation fixes
Diffstat (limited to 'amiga/os3support.h')
-rw-r--r--amiga/os3support.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/amiga/os3support.h b/amiga/os3support.h
index 93bb0ba11..e28985eaf 100644
--- a/amiga/os3support.h
+++ b/amiga/os3support.h
@@ -98,6 +98,7 @@
#define RAWKEY_END 0x71
/* Other constants */
+#define BVS_DISPLAY BVS_NONE
#define IDCMP_EXTENDEDMOUSE 0
#define WINDOW_BACKMOST 0
#define DN_FULLPATH 0
@@ -143,6 +144,7 @@
/* Utility */
#define SetMem memset
+#define SNPrintf snprintf
/* Integral type definitions */
typedef int8_t int8;
@@ -160,6 +162,12 @@ struct TimeVal {
uint32 Microseconds;
};
+/* TimeRequest */
+struct TimeRequest {
+ struct IORequest Request;
+ struct TimeVal Time;
+};
+
/* Compositing */
#define COMPFLAG_IgnoreDestAlpha 0
#define COMPFLAG_SrcAlphaOverride 0
@@ -189,7 +197,8 @@ struct TimeVal {
/* Object types */
enum {
- ASOT_PORT = 1
+ ASOT_PORT = 1,
+ ASOT_IOREQUEST
};
/* Requester types */