1 /**
2  ** image.h ---- Source Image Utility
3  **
4  ** by Michal Stencl Copyright (c) 1998
5  ** <e-mail>    - [stenclpmd@ba.telecom.sk]
6  **
7  ** This file is part of the GRX graphics library.
8  **
9  ** The GRX graphics library is free software; you can redistribute it
10  ** and/or modify it under some conditions; see the "copying.grx" file
11  ** for details.
12  **
13  ** This library is distributed in the hope that it will be useful,
14  ** but WITHOUT ANY WARRANTY; without even the implied warranty of
15  ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  **
17  ** modifications by Hartmut Schirmer (c) 1998
18  **
19  **/
20 
21 #ifndef __IMAGE_H_INCLUDED__
22 #define __IMAGE_H_INCLUDED__
23 
24 #ifndef __LIBGRX_H_INCLUDED__
25 #include "libgrx.h"
26 #endif
27 
28 #ifndef GrImage
29 #define GrImage GrPixmap
30 #endif
31 
32 int _GrImageTestSize(int wdt,int hgt);
33 GrImage *_GrImageAllocate(GrContext *ctx, int nwidth,int nheight);
34 
35 #endif
36