1 /* Copyright (C) 1992, 1993, 1996 artofcode LLC.  All rights reserved.
2 
3   This program is free software; you can redistribute it and/or modify it
4   under the terms of the GNU General Public License as published by the
5   Free Software Foundation; either version 2 of the License, or (at your
6   option) any later version.
7 
8   This program is distributed in the hope that it will be useful, but
9   WITHOUT ANY WARRANTY; without even the implied warranty of
10   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11   General Public License for more details.
12 
13   You should have received a copy of the GNU General Public License along
14   with this program; if not, write to the Free Software Foundation, Inc.,
15   59 Temple Place, Suite 330, Boston, MA, 02111-1307.
16 
17 */
18 
19 /*$Id: gp_mswin.h,v 1.4.2.1.2.1 2003/01/17 00:49:02 giles Exp $ */
20 /* (used by both C code and Windows 'resource') */
21 
22 #ifndef gp_mswin_INCLUDED
23 #  define gp_mswin_INCLUDED
24 
25 
26 #define GSTEXT_ICON	50
27 #define GSIMAGE_ICON	51
28 #define SPOOL_PORT	100
29 #define CANCEL_PCDONE	101
30 #define CANCEL_PRINTING	102
31 
32 #ifndef RC_INVOKED		/* NOTA BENE */
33 
34 /* system menu constants for image window */
35 #define M_COPY_CLIP 1
36 
37 /* externals from gp_mswin.c */
38 
39 /* Patch 26.10.94 :for Microsoft C/C++ 8.0 32-Bit       */
40 /* "_export" is Microsoft 16-Bit specific.              */
41 /* With MS-C/C++ 8.00 32 Bit "_export" causes an error. */
42 #if defined(_WIN32) && defined(_MSC_VER)
43 #define _export
44 #endif
45 
46 /*
47 extern HWND hwndtext;
48 extern HWND hDlgModeless;
49 */
50 extern HINSTANCE phInstance;
51 extern const LPSTR szAppName;
52 extern BOOL is_win32s;
53 extern int is_spool(const char *queue);
54 
55 #endif /* !defined(RC_INVOKED) */
56 
57 #endif /* gp_mswin_INCLUDED */
58