summaryrefslogtreecommitdiff
path: root/amiga/agclass/amigaguide_class.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2014-02-10 18:34:09 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2014-02-10 18:34:09 +0000
commite1b5332192f85945e86ec5f581d4914b0c9601b0 (patch)
treed2fba403ea414dd290e236d30adc3627ad6f435a /amiga/agclass/amigaguide_class.h
parent4aa59f538276ce9413121d6d2e6eeed8ae5c0900 (diff)
downloadnetsurf-e1b5332192f85945e86ec5f581d4914b0c9601b0.tar.gz
netsurf-e1b5332192f85945e86ec5f581d4914b0c9601b0.tar.bz2
Add ability to process AmigaGuide messages whilst the help system is running
Diffstat (limited to 'amiga/agclass/amigaguide_class.h')
-rwxr-xr-xamiga/agclass/amigaguide_class.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/amiga/agclass/amigaguide_class.h b/amiga/agclass/amigaguide_class.h
index f122f35f7..ee7e55e60 100755
--- a/amiga/agclass/amigaguide_class.h
+++ b/amiga/agclass/amigaguide_class.h
@@ -27,10 +27,13 @@
#define AMIGAGUIDE_BaseName (AMIGAGUIDE_Dummy + 4) // Basename of the application that opens the help file.
#define AMIGAGUIDE_ContextArray (AMIGAGUIDE_Dummy + 5) // Context node array (must be NULL-terminated).
#define AMIGAGUIDE_ContextID (AMIGAGUIDE_Dummy + 6) // Index value of the node to display.
+#define AMIGAGUIDE_Signal (AMIGAGUIDE_Dummy + 7) // Signal mask to wait on
// method definition
-#define AGM_OPEN WM_OPEN
-#define AGM_CLOSE WM_CLOSE
+#define AGM_Dummy AMIGAGUIDE_Dummy + 100
+#define AGM_OPEN AGM_Dummy + 1
+#define AGM_CLOSE AGM_Dummy + 2
+#define AGM_PROCESS AGM_Dummy + 3
// function prototypes
Class *initAGClass(void);