/* Copyright (C) 2001, Ghostgum Software Pty Ltd. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA, 02111-1307. */ /* gdevdsp2.c */ /* $Id: gdevdsp2.h,v 1.2.2.2.2.1 2003/01/17 00:49:00 giles Exp $ */ #ifndef gx_device_display_DEFINED # define gx_device_display_DEFINED typedef struct gx_device_display_s gx_device_display; #define gx_device_display_common\ gx_device_memory *mdev;\ display_callback *callback;\ void *pHandle;\ int nFormat;\ void *pBitmap;\ unsigned long ulBitmapSize /* The device descriptor */ struct gx_device_display_s { gx_device_common; gx_device_display_common; }; extern_st(st_device_display); #define public_st_device_display() /* in gdevdsp.c */\ gs_public_st_composite_use_final(st_device_display, gx_device_display,\ "gx_device_display", display_enum_ptrs, display_reloc_ptrs,\ gx_device_finalize) #endif