479.1.8
by Matthew Fuller
Pull the XBM-related functions out of util.c into their own image_* |
1 |
/*
|
479.1.17
by Matthew Fuller
Tweak comments/include guards to match rename. |
2 |
* Bitmap image handling function bits
|
479.1.8
by Matthew Fuller
Pull the XBM-related functions out of util.c into their own image_* |
3 |
*/
|
484
by Matthew Fuller
Consistently rename all the include guards so they match the filename, |
4 |
#ifndef _CTWM_IMAGE_BITMAP_H
|
5 |
#define _CTWM_IMAGE_BITMAP_H
|
|
479.1.8
by Matthew Fuller
Pull the XBM-related functions out of util.c into their own image_* |
6 |
|
7 |
#include <stdio.h> |
|
8 |
#include <stdlib.h> |
|
9 |
#include <string.h> |
|
10 |
||
480.1.17
by Matthew Fuller
const-ify all these image names we pass through this process. |
11 |
Image *GetBitmapImage(const char *name, ColorPair cp); |
12 |
Pixmap GetBitmap(const char *name); |
|
479.1.8
by Matthew Fuller
Pull the XBM-related functions out of util.c into their own image_* |
13 |
|
481.1.11
by Matthew Fuller
Move the HotX/Y vars over into image_bitmap.[ch], since they're only |
14 |
/* Used for cursors */
|
15 |
extern int HotX, HotY; |
|
479.1.8
by Matthew Fuller
Pull the XBM-related functions out of util.c into their own image_* |
16 |
|
484
by Matthew Fuller
Consistently rename all the include guards so they match the filename, |
17 |
#endif /* _CTWM_IMAGE_BITMAP_H */ |