network_gamelist.h
author truelight
Sun, 29 Jan 2006 22:42:17 +0000
changeset 2927 15690f1a9bb8
parent 2186 461a2aff3486
child 5429 a1f3d6573141
permissions -rw-r--r--
(svn r3483) -Fix: fixed warning about setjmp (tnx Bjarni for testing, and tnx for
taking the effort to commit it)
2186
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 738
diff changeset
     1
/* $Id$ */
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 738
diff changeset
     2
543
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents:
diff changeset
     3
#ifndef NETWORK_GAMELIST_H
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents:
diff changeset
     4
#define NETWORK_GAMELIST_H
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents:
diff changeset
     5
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents:
diff changeset
     6
void NetworkGameListClear(void);
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents:
diff changeset
     7
NetworkGameList *NetworkGameListAddItem(uint32 ip, uint16 port);
738
0b2fb79e64fc (svn r1194) Feature: You can now add and remove servers from the server list. Those will be remembered until you delete them by pressing the Delete key.
dominik
parents: 716
diff changeset
     8
void NetworkGameListRemoveItem(NetworkGameList *remove);
716
40a349345f82 (svn r1168) -Cleanup: [Network] Cleaned the network code a bit. Added 'const'
truelight
parents: 543
diff changeset
     9
void NetworkGameListAddQueriedItem(const NetworkGameInfo *info, bool server_online);
543
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents:
diff changeset
    10
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents:
diff changeset
    11
#endif /* NETWORK_GAMELIST_H */