int XReadBitmapFileData(filename, width_return, height_return, data_return, x_hot_return, y_hot_return)
char *filename;
unsigned int *width_return, *height_return;
unsigned char *data_return;
int *x_hot_return, *y_hot_return;
filename | Specifies the file name to use. The format of the file name is operating-system dependent. |
width_return height_return | Return the width and height values of the read in bitmap file. |
data_return | Returns the bitmap data. |
x_hot_return y_hot_return | Return the hotspot coordinates. |