home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 532.lha / NLDaemon / Source / NL-Main.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-07-10  |  795 b   |  31 lines

  1. #define INTUITION_PREFERENCES_H             /* don't need 'em */
  2. #define INTUITIONPRIVATE                    /* need access to image data */
  3. #include <intuition/intuitionbase.h>
  4. #include <libraries/dos.h>
  5.  
  6. #define PROGRAM         "NL-Daemon"
  7. #define LOADVERS        3
  8.  
  9. #define MINHMAJVERS     1       /* lowest handler version that can be loaded */
  10. #define MINHMINVERS     4
  11.  
  12. #define HANDLERCODE     "L:NL-Handler"        /* the handler file */
  13.  
  14.  
  15. #define INTUITION_REV       0L
  16. #define EXIT_OK             RETURN_OK
  17. #define EXIT_ERROR          RETURN_ERROR
  18.  
  19. extern struct IntuitionBase *IntuitionBase;
  20.  
  21. /*
  22.  *  Offset values used by SetFunction
  23.  */
  24.  
  25. extern long LVOOpenWindow;
  26. extern long LVOSetMenuStrip;
  27. extern long LVOOpenScreen;
  28.  
  29. extern long SetFunction();
  30. extern struct MsgPort *FindPort();
  31.