blob: 9f1b1320abd8bd0e58d0c8fe955f13caf145f5d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
#ifndef __NG_IMAGE_H
#define __NG_IMAGE_H
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Intrinsic.h>
/**
* loadBMPImage
* Create a pixmap representing the given BMP file, for the specified display and screen.
*
* display: connection to X server
* screen: the screen to create the pixmap for
* bmpPathname: absolute path and name to the bmp file
*
* returned value: the pixmap newly created if successful. 0 otherwise.
*/
Pixmap loadBMPImage (Display *display, Screen *screen, char *bmpPathname);
/**
* Return error message describing why the BMP file could not be displayed
*/
const char *getBMPErrorMessage();
#endif /* NG_IMAGE_H */
|