[9756] | 1 | /* |
---|
| 2 | * (c) Copyright 1989, 1990, 1991, 1992, 1993 OPEN SOFTWARE FOUNDATION, INC. |
---|
| 3 | * ALL RIGHTS RESERVED |
---|
| 4 | */ |
---|
| 5 | /* |
---|
| 6 | * Motif Release 1.2.2 |
---|
| 7 | */ |
---|
| 8 | /* $RCSfile: WmImage.h,v $ $Revision: 1.1.1.1 $ $Date: 1997-03-25 09:12:21 $ */ |
---|
| 9 | /* |
---|
| 10 | * (c) Copyright 1987, 1988, 1989, 1990 HEWLETT-PACKARD COMPANY */ |
---|
| 11 | |
---|
| 12 | #ifdef _NO_PROTO |
---|
| 13 | extern char *BitmapPathName (); |
---|
| 14 | extern Pixmap MakeCachedIconPixmap (); |
---|
| 15 | extern Pixmap MakeCachedLabelPixmap (); |
---|
| 16 | extern Pixmap MakeClientIconPixmap (); |
---|
| 17 | extern int GetBitmapIndex (); |
---|
| 18 | extern Pixmap MakeIconPixmap (); |
---|
| 19 | extern Pixmap MakeNamedIconPixmap (); |
---|
| 20 | #else /* _NO_PROTO */ |
---|
| 21 | extern char *BitmapPathName (char *string); |
---|
| 22 | extern int GetBitmapIndex (WmScreenData *pSD, char *name); |
---|
| 23 | extern Pixmap MakeCachedIconPixmap (ClientData *pCD, int bitmapIndex, Pixmap mask); |
---|
| 24 | extern Pixmap MakeCachedLabelPixmap (WmScreenData *pSD, Widget menuW, int bitmapIndex); |
---|
| 25 | extern Pixmap MakeClientIconPixmap (ClientData *pCD, Pixmap iconBitmap); |
---|
| 26 | extern Pixmap MakeIconPixmap (ClientData *pCD, Pixmap bitmap, Pixmap mask, unsigned int width, unsigned int height, unsigned int depth); |
---|
| 27 | extern Pixmap MakeNamedIconPixmap (ClientData *pCD, String iconName); |
---|
| 28 | #endif /* _NO_PROTO */ |
---|