]> git.pond.sub.org Git - empserver/blobdiff - src/client/misc.h
Empty out and remove sysdep_w32.c sysdep_w32.h
[empserver] / src / client / misc.h
index 0be7d93178d470df274df8c55a60080162550fe6..171f8a96896ce83ec8d50c7a46f64aaa67fb1fe1 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2005, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2009, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
  *
  *  ---
  *
- *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
- *  related information and legal notices. It is expected that any future
- *  projects/authors will amend these files as needed.
+ *  See files README, COPYING and CREDITS in the root of the source
+ *  tree for related information and legal notices.  It is expected
+ *  that future projects/authors will amend these files as needed.
  *
  *  ---
  *
  *  misc.h: Misc client definitions
- * 
+ *
  *  Known contributors to this file:
  *     Steve McClure, 1998
  */
 
-#ifndef _MISC_H_
-#define _MISC_H_
+#ifndef MISC_H
+#define MISC_H
 
-#include <ctype.h>
 #include <stdio.h>
-#include <sys/types.h>
-#ifdef _WIN32
-#include <windows.h>
-#include <winsock.h>
-#else
-#include <netinet/in.h>
-#endif
-
-typedef short coord;           /* also change NSC_COORD in nsc.h */
 
-struct ioqueue;
+#define MAX(a, b) ((a) >= (b) ? (a) : (b))
+#define MIN(a,b) ((a) < (b) ? (a) : (b))
 
 extern char empirehost[];
 extern char empireport[];
 extern int eight_bit_clean;
-extern int interrupt;
-extern char num_teles[];
-extern int sock;
-extern char *SO;
-extern char *SE;
-
-#ifdef _WIN32
-HANDLE hStdIn;
-#endif
+extern int input_fd;
+extern int send_eof;
+extern FILE *auxfp;
 
-#ifdef _WIN32
-#define getsose() ((void)0)
-#define putso() ((void)0)
-#define putse() ((void)0)
-#define pclose _pclose
-#define popen _popen
-#else
+#ifdef HAVE_CURSES_TERMINFO
 void getsose(void);
 void putso(void);
 void putse(void);
-#endif
+#else  /* !HAVE_CURSES_TERMINFO */
+#define getsose() ((void)0)
+#define putso() ((void)0)
+#define putse() ((void)0)
+#endif /* !HAVE_CURSES_TERMINFO */
+
 int recvline(int s, char *buf);
+int parseid(char *);
 int expect(int s, int match, char *buf);
-int handleintr(int);
-int hostaddr(char *name, struct sockaddr_in *addr);
-int hostconnect(struct sockaddr_in *addr);
-int hostport(char *name, struct sockaddr_in *addr);
+int tcp_connect(char *, char *);
 int login(int s, char *uname, char *cname, char *cpass, int kill_proc, int);
-void saveargv(int ac, char **src, char **dst);
+int play(int);
 void sendcmd(int s, char *cmd, char *arg);
-int sendeof(int sock);
-void servercmd(struct ioqueue *ioq, FILE *auxfi);
-int serverio(int s, struct ioqueue *ioq);
-int termio(int fd, int sock, FILE *auxfi);
+void servercmd(int, char *, int);
+void outch(char);
+
+#ifdef _MSC_VER
+#define pclose _pclose
+#define popen _popen
+#define snprintf _snprintf
+#endif
 
 #endif