Update common-c submodule with const char * change

This commit is contained in:
Cameron Gutman
2016-07-31 17:10:32 -07:00
parent 91dcb505de
commit b0c2978405
4 changed files with 16 additions and 16 deletions
+5 -5
View File
@@ -14,12 +14,12 @@
- (void) connectionStarted;
- (void) connectionTerminated:(long)errorCode;
- (void) stageStarting:(char*)stageName;
- (void) stageComplete:(char*)stageName;
- (void) stageFailed:(char*)stageName withError:(long)errorCode;
- (void) stageStarting:(const char*)stageName;
- (void) stageComplete:(const char*)stageName;
- (void) stageFailed:(const char*)stageName withError:(long)errorCode;
- (void) launchFailed:(NSString*)message;
- (void) displayMessage:(char*)message;
- (void) displayTransientMessage:(char*)message;
- (void) displayMessage:(const char*)message;
- (void) displayTransientMessage:(const char*)message;
@end