svnno****@sourc*****
svnno****@sourc*****
2015年 7月 17日 (金) 16:04:02 JST
Revision: 5916 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5916 Author: doda Date: 2015-07-17 16:03:59 +0900 (Fri, 17 Jul 2015) Log Message: ----------- 改行として CRLF と LF が混在していたのを修正 Modified Paths: -------------- trunk/ttssh2/ttxssh/ssh.h -------------- next part -------------- Modified: trunk/ttssh2/ttxssh/ssh.h =================================================================== --- trunk/ttssh2/ttxssh/ssh.h 2015-07-17 05:54:41 UTC (rev 5915) +++ trunk/ttssh2/ttxssh/ssh.h 2015-07-17 07:03:59 UTC (rev 5916) @@ -786,16 +786,16 @@ #define get_mpint_len(pvar, offset) ((get_ushort16_MSBfirst((pvar)->ssh_state.payload + (offset)) + 7) >> 3) #define get_ushort16(buf) get_ushort16_MSBfirst((buf)) /// - -/* Global request confirmation callbacks */ -typedef void global_confirm_cb(PTInstVar pvar, int type, unsigned int seq, void *ctx); -void client_register_global_confirm(global_confirm_cb *cb, void *ctx); -/* Global request success/failure callbacks */ -struct global_confirm { - global_confirm_cb *cb; - void *ctx; - int ref_count; +/* Global request confirmation callbacks */ +typedef void global_confirm_cb(PTInstVar pvar, int type, unsigned int seq, void *ctx); +void client_register_global_confirm(global_confirm_cb *cb, void *ctx); + +/* Global request success/failure callbacks */ +struct global_confirm { + global_confirm_cb *cb; + void *ctx; + int ref_count; }; #endif