diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-07-11 22:22:45 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-07-11 22:22:45 +0000 |
commit | 399bb2709e773847707a948610fd74c7f4b94e9f (patch) | |
tree | dacf30fb97d2c101f4f53d02fd972262b2c7db4e /src/serverinfo.h | |
parent | 8f40ab49da011f6d57653afbd10d22c20309f2f6 (diff) | |
download | mana-399bb2709e773847707a948610fd74c7f4b94e9f.tar.gz mana-399bb2709e773847707a948610fd74c7f4b94e9f.tar.bz2 mana-399bb2709e773847707a948610fd74c7f4b94e9f.tar.xz mana-399bb2709e773847707a948610fd74c7f4b94e9f.zip |
Committed header dependencies reducing patch by Doener
Diffstat (limited to 'src/serverinfo.h')
-rw-r--r-- | src/serverinfo.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/serverinfo.h b/src/serverinfo.h new file mode 100644 index 00000000..be3fccaa --- /dev/null +++ b/src/serverinfo.h @@ -0,0 +1,36 @@ +/* + * The Mana World + * Copyright 2004 The Mana World Development Team + * + * This file is part of The Mana World. + * + * The Mana World 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 + * any later version. + * + * The Mana World 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 The Mana World; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * $Id$ + */ + +#ifndef _TMW_SERVERINFO_H +#define _TMW_SERVERINFO_H + +typedef struct { + int address; + short port; + char name[20]; + short online_users; +} SERVER_INFO; + +extern SERVER_INFO *server_info; + +#endif |