~ctwm/ctwm/trunk

479.1.13 by Matthew Fuller
Move the creation and lookup of our builtin :bitmaps into a separate
1
/*
2
 * Buildin image bitmaps lookup/generation
3
 */
484 by Matthew Fuller
Consistently rename all the include guards so they match the filename,
4
#ifndef _CTWM_IMAGE_BITMAP_BUILTIN_H
5
#define _CTWM_IMAGE_BITMAP_BUILTIN_H
479.1.13 by Matthew Fuller
Move the creation and lookup of our builtin :bitmaps into a separate
6
480.1.17 by Matthew Fuller
const-ify all these image names we pass through this process.
7
Pixmap get_builtin_plain_pixmap(const char *name, unsigned int *widthp,
479.1.19 by Matthew Fuller
make indent
8
                                unsigned int *heightp);
480.1.17 by Matthew Fuller
const-ify all these image names we pass through this process.
9
Image *get_builtin_scalable_pixmap(const char *name, ColorPair cp);
10
Image *get_builtin_animated_pixmap(const char *name, ColorPair cp);
479.1.13 by Matthew Fuller
Move the creation and lookup of our builtin :bitmaps into a separate
11
484 by Matthew Fuller
Consistently rename all the include guards so they match the filename,
12
#endif /* _CTWM_IMAGE_BITMAP_BUILTIN_H */