summaryrefslogtreecommitdiff
path: root/src/GetImage.c
diff options
context:
space:
mode:
authorKaleb Keithley <kaleb@freedesktop.org>2003-11-14 16:48:20 +0000
committerKaleb Keithley <kaleb@freedesktop.org>2003-11-14 16:48:20 +0000
commit917de4a98eeb9a7eafeab7ddd8e1b1ae6aae6514 (patch)
treee79f892e8545c72ddbe15d679315143e5672175d /src/GetImage.c
parentdeae12c6b683898f5213992d561a59d4ea889cca (diff)
XFree86 4.3.0.1PRE_xf86-4_3_0_1
Diffstat (limited to 'src/GetImage.c')
-rw-r--r--src/GetImage.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/GetImage.c b/src/GetImage.c
index ab665d8..9ffef9e 100644
--- a/src/GetImage.c
+++ b/src/GetImage.c
@@ -24,11 +24,16 @@ used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
*/
+/* $XFree86: xc/lib/X11/GetImage.c,v 1.4 2001/12/14 19:54:00 dawes Exp $ */
#define NEED_REPLIES
#include "Xlibint.h"
#include <X11/Xutil.h> /* for XDestroyImage */
+/* ImUtil.c */
+extern int _XGetScanlinePad();
+extern int _XSetImage();
+
#define ROUNDUP(nbytes, pad) (((((nbytes) - 1) + (pad)) / (pad)) * (pad))
static unsigned int Ones(mask) /* HACKMEM 169 */