From feee84315fb40de9a719477893ae866f5e4b83ec Mon Sep 17 00:00:00 2001 From: Meep-Eep Date: Mon, 23 Jun 2008 10:54:04 +0000 Subject: [PATCH] Fix declarations. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3028 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/tactrans.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sc2/src/sc2code/tactrans.h b/sc2/src/sc2code/tactrans.h index 4ec8b2492..84fbcdc71 100644 --- a/sc2/src/sc2code/tactrans.h +++ b/sc2/src/sc2code/tactrans.h @@ -19,9 +19,11 @@ #ifndef _TACTRANS_H #define _TACTRANS_H -bool battleEndReadyHuman (COUNT side); -bool battleEndReadyComputer (COUNT side); -bool battleEndReadyNetwork (COUNT side); +bool battleEndReadyHuman (HumanInputContext *context); +bool battleEndReadyComputer (ComputerInputContext *context); +#ifdef NETPLAY +bool battleEndReadyNetwork (NetworkInputContext *context); +#endif #endif /* _TACTRANS_H */