summaryrefslogtreecommitdiff
path: root/src/network/core/core.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-11-30 13:38:46 +0000
committerrubidium <rubidium@openttd.org>2010-11-30 13:38:46 +0000
commitb6c2216749765e4d29fc3fa05dc1023c2c643cce (patch)
treeabc3302f27c09c0e0494f4691e5989aa514116e2 /src/network/core/core.h
parent9c83a8975fe93568d4a3c44bd273e846b18d8e3f (diff)
downloadopenttd-b6c2216749765e4d29fc3fa05dc1023c2c643cce.tar.xz
(svn r21358) -Codechange: make some network function names conform to coding style
Diffstat (limited to 'src/network/core/core.h')
-rw-r--r--src/network/core/core.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/network/core/core.h b/src/network/core/core.h
index bf013909a..932199a9c 100644
--- a/src/network/core/core.h
+++ b/src/network/core/core.h
@@ -74,9 +74,9 @@ public:
*/
void Reopen() { this->has_quit = false; }
- void Send_GRFIdentifier(Packet *p, const GRFIdentifier *grf);
- void Recv_GRFIdentifier(Packet *p, GRFIdentifier *grf);
- void Send_CompanyInformation(Packet *p, const struct Company *c, const struct NetworkCompanyStats *stats);
+ void SendGRFIdentifier(Packet *p, const GRFIdentifier *grf);
+ void ReceiveGRFIdentifier(Packet *p, GRFIdentifier *grf);
+ void SendCompanyInformation(Packet *p, const struct Company *c, const struct NetworkCompanyStats *stats);
};
#endif /* ENABLE_NETWORK */