1 // Emacs style mode select -*- C++ -*-
2 //---------------------------------------------------------------------------
3 //
4 // $Id: swutil.h,v 1.3 2003/06/04 16:02:55 fraggle Exp $
5 //
6 // Copyright(C) 1984-2000 David L. Clark
7 // Copyright(C) 2001-2003 Simon Howard
8 //
9 // This program is free software; you can redistribute it and/or modify it
10 // under the terms of the GNU General Public License as published by the
11 // Free Software Foundation; either version 2 of the License, or (at your
12 // option) any later version. This program is distributed in the hope that
13 // it will be useful, but WITHOUT ANY WARRANTY; without even the implied
14 // warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 // the GNU General Public License for more details. You should have
16 // received a copy of the GNU General Public License along with this
17 // program; if not, write to the Free Software Foundation, Inc., 59 Temple
18 // Place - Suite 330, Boston, MA 02111-1307, USA.
19 //
20 //---------------------------------------------------------------------------
21 
22 #ifndef __SWUTIL_H__
23 #define __SWUTIL_H__
24 
25 #include "sw.h"
26 
27 extern void movexy(OBJECTS *ob, int *x, int *y);
28 extern void setdxdy(OBJECTS *obj, int dx, int dy);
29 extern void swsetblk();
30 extern void swgetjoy();
31 extern void histend();
32 
33 #endif
34 
35 
36 //---------------------------------------------------------------------------
37 //
38 // $Log: swutil.h,v $
39 // Revision 1.3  2003/06/04 16:02:55  fraggle
40 // Remove broken printscreen function
41 //
42 // Revision 1.2  2003/04/05 22:44:04  fraggle
43 // Remove some useless functions from headers, make them static if they
44 // are not used by other files
45 //
46 // Revision 1.1.1.1  2003/02/14 19:03:33  fraggle
47 // Initial Sourceforge CVS import
48 //
49 //
50 // sdh 14/2/2003: change license header to GPL
51 // sdh 21/10/2001: added cvs tags
52 // sdh 19/10/2001: added header
53 //
54 //---------------------------------------------------------------------------
55 
56