/*****************************************************************************/ /*** ***/ /*** Copyright (c) 1990, Visual Edge Software Ltd. ***/ /*** ***/ /*** All rights reserved. This notice is intended as a precaution ***/ /*** against inadvertent publication, and shall not be deemed to con- ***/ /*** stitute an acknowledgment that publication has occurred nor to ***/ /*** imply any waiver of confidentiality. The year included in the ***/ /*** notice is the year of the creation of the work. ***/ /*** ***/ /*****************************************************************************/ #ifndef _UX_XPM_H_ #define _UX_XPM_H_ #ifdef vms #include #else #include #endif #define PixmapSuccess BitmapSuccess #define PixmapOpenFailed BitmapOpenFailed #define PixmapFileInvalid BitmapFileInvalid #define PixmapNoMemory BitmapNoMemory extern int UxCreatePixmapFromData(); extern int UxReadPixmapFile(); extern int UxReadPixmapOrBitmapFile(); extern int UxLoadPixmapFromPixmapOrBitmapFile(); #define UX_IS_A_BITMAP 1 #define UX_IS_A_PIXMAP 2 #endif /* _UX_XPM_H_ */