1 #ifndef RESOURCES_MISC_H
    2 #define RESOURCES_MISC_H
    3 
    4 /*
    5 	misc.resource include
    6 
    7 	Copyright © 2002 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #ifndef EXEC_TYPES_H
   11 # include <exec/types.h>
   12 #endif
   13 
   14 #ifndef EXEC_LIBRARIES_H
   15 # include <exec/libraries.h>
   16 #endif
   17 
   18 
   19 #define MR_SERIALPORT    0
   20 #define MR_SERIALBITS    1
   21 #define MR_PARALLELPORT  2
   22 #define MR_PARALLELBITS  3
   23 
   24 
   25 #define MR_ALLOCMISCRESOURCE  (LIB_BASE)
   26 #define MR_FREEMISCRESOURCE   (LIB_BASE - LIB_VECTSIZE)
   27 
   28 
   29 #define MISCNAME  "misc.resource"
   30 
   31 
   32 #endif /* RESOURCES_MISC_H */