icommutag.h

来自「使用CFNetwork.framework实现的通信中间件。」· C头文件 代码 · 共 51 行

H
51
字号
////  iClientInfo.h//  Communicate////  Created by Owen.Qin on 9/24/08.//  Copyright 2008 __MyCompanyName__. All rights reserved.//#import "iCommDef.h"// class // save multi-client information@interface iClientInfo : NSObject {@public	CFSocketNativeHandle	_handle;	CFSocketRef				_s;	NSString*				_identifier;}@property (nonatomic, retain, readwrite) NSString* _identifier;@end// class// define message content@interface iMsg : NSObject{@public	CFSocketRef				_s;				// use for communication	CFSocketRef				_socClient;		// client socket	NSString*				_msgId;			// message identifier	NSString*				_msgDest;		// message destination	NSString*				_msgBody;		// message body}@end// class // define message id and callback map@interface iMapMsgIdAndCallBack : NSObject{@public	NSString*				_msgId;	iCommCallBack			_callback;}@end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?