1 /*
    2     extras.library definitions
    3 
    4     Copyright © 2015 MorphOS Team. All rights reserved.
    5 */
    6 
    7 #ifndef LIBRARIES_EXTRAS_H
    8 #define LIBRARIES_EXTRAS_H
    9 
   10 #include <utility/tagitem.h>
   11 
   12 
   13 /* Tags for LoadImageToBitMap() */
   14 
   15 #define EXTA_ImageWidth                (TAG_USER + 1)        // ULONG*
   16 #define EXTA_ImageHeight               (TAG_USER + 2)        // ULONG*
   17 #define EXTA_FriendBitmap              (TAG_USER + 3)        // struct BitMap*
   18 
   19 
   20 /* Tags for LoadFile() */
   21 
   22 #define EXTA_FileSize                  (TAG_USER + 101)      // UQUAD*
   23 
   24 
   25 
   26 #endif      /* LIBRARIES_EXTRAS_H */