netsurf/amiga/agclass/amigaguide_class.h

41 lines
1.1 KiB
C
Executable File

/*
* AmigaGuide Class
*
*/
#ifndef AMIGAGUIDE_CLASS_H
#define AMIGAGUIDE_CLASS_H
#include <exec/types.h>
#include <intuition/classes.h>
#include <classes/window.h>
#include <proto/exec.h>
#include <proto/intuition.h>
#include <proto/amigaguide.h>
#include <proto/utility.h>
// tag definitions
#define AMIGAGUIDE_Dummy (TAG_USER+0x05000000)
#define AMIGAGUIDE_Name (AMIGAGUIDE_Dummy + 1) // Name of the AmigaGuide database.
#define AMIGAGUIDE_Screen (AMIGAGUIDE_Dummy + 2) // Pointer of the screen to open on.
#define AMIGAGUIDE_PubScreen (AMIGAGUIDE_Dummy + 3) // Name of the public screen to open on.
#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.
// method definition
#define AGM_OPEN WM_OPEN
#define AGM_CLOSE WM_CLOSE
// function prototypes
Class *initAGClass(void);
BOOL freeAGClass(Class *);
#endif // AMIGAGUIDE_CLASS_H