Update of /cvsroot/netrek/client/netrekxp/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26644/include

Modified Files:
	proto.h struct.h wlib.h 
Log Message:
- *.tamu.edu removed from metaserver listing, and direct connect via -h servername
  also removed.  This is due to the policy of blocking all players with the default
  login that comes with the client.
- added new scaling/rotation function that allows us to use higher resolution bitmaps.
  The new bitmap set (made by Defcom) are stored in 80x80 pixel blocks (rather than 20x20
  for all other bitmap sets).  In addition, only 1 bitmap per ship is needed rather than
  32 for each ship position - the rotation is done on the fly by Windows.  To take 
  advantage of the high res bitmap set, Windows 2000 or later is required.  So far
 2 bitmap sets have been completed.

Index: wlib.h
===================================================================
RCS file: /cvsroot/netrek/client/netrekxp/include/wlib.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- wlib.h	1 May 2006 18:06:21 -0000	1.3
+++ wlib.h	6 May 2006 05:40:00 -0000	1.4
@@ -131,6 +131,7 @@
                                 int y,
                                 float SCALEX,
                                 float SCALEY,
+                                unsigned char p_dir,
                                 W_Icon icon,
                                 W_Color color);
 extern void W_ClearArea (W_Window window,

Index: struct.h
===================================================================
RCS file: /cvsroot/netrek/client/netrekxp/include/struct.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- struct.h	26 Apr 2006 02:04:24 -0000	1.4
+++ struct.h	6 May 2006 05:40:00 -0000	1.5
@@ -629,12 +629,12 @@
     W_Callback HandleKeyup;
     W_Callback HandleButton;
     W_Callback HandleExpose;
-	struct tagWindow *parent;
-	char name[32];
-	int orig_x;
-	int orig_y;
-	int orig_width;
-	int orig_height;
+    struct tagWindow *parent;
+    char name[32];
+    int orig_x;
+    int orig_y;
+    int orig_width;
+    int orig_height;
     int wam;                    /* Window Allowed Messages */
 }
 Window;

Index: proto.h
===================================================================
RCS file: /cvsroot/netrek/client/netrekxp/include/proto.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- proto.h	1 May 2006 18:06:21 -0000	1.11
+++ proto.h	6 May 2006 05:40:00 -0000	1.12
@@ -630,6 +630,7 @@
                          int y,
                          float SCALEX,
                          float SCALEY,
+                         unsigned char p_dir,
                          W_Icon icon,
                          W_Color color);
 void W_WriteBitmapGrey (int x,