summaryrefslogtreecommitdiff
path: root/objective-c/test/include/TestCommon.h
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2018-01-23 12:30:34 -0500
committerBernard Normier <bernard@zeroc.com>2018-01-23 12:30:34 -0500
commita03cc8a25e9550e09090fea370d1af86df1a6aff (patch)
treebb7ae4a376a9e638a99b29c05d8abc2d7b7a92e9 /objective-c/test/include/TestCommon.h
parentUpdated UWP test controller certificate (diff)
downloadice-a03cc8a25e9550e09090fea370d1af86df1a6aff.tar.bz2
ice-a03cc8a25e9550e09090fea370d1af86df1a6aff.tar.xz
ice-a03cc8a25e9550e09090fea370d1af86df1a6aff.zip
Added strict prototypes (ICE-8613)
Diffstat (limited to 'objective-c/test/include/TestCommon.h')
-rw-r--r--objective-c/test/include/TestCommon.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/objective-c/test/include/TestCommon.h b/objective-c/test/include/TestCommon.h
index 7fcdfa44440..3dd5d96814d 100644
--- a/objective-c/test/include/TestCommon.h
+++ b/objective-c/test/include/TestCommon.h
@@ -32,12 +32,12 @@ TEST_API void TestCommonTestInit(id, SEL, NSString*, BOOL, BOOL);
@protocol ICECommunicator;
@protocol ICEProperties;
-TEST_API id<ICEProperties> defaultServerProperties();
-TEST_API id<ICEProperties> defaultClientProperties();
+TEST_API id<ICEProperties> defaultServerProperties(int* argc, char** argv);
+TEST_API id<ICEProperties> defaultClientProperties(int* argc, char** argv);
TEST_API void serverReady(id<ICECommunicator>);
-TEST_API void serverStop();
+TEST_API void serverStop(void);
TEST_API void tprintf(const char* fmt, ...);