[BACK]Return to com.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / include

Diff for /OpenXM_contrib2/asir2000/include/com.h between version 1.13 and 1.14

version 1.13, 2015/08/14 13:51:55 version 1.14, 2018/03/29 01:32:53
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/include/com.h,v 1.12 2015/08/06 10:01:52 fujimoto Exp $   * $OpenXM: OpenXM_contrib2/asir2000/include/com.h,v 1.13 2015/08/14 13:51:55 fujimoto Exp $
 */  */
 #ifndef _COM_H_  #ifndef _COM_H_
 #define _COM_H_  #define _COM_H_
Line 89 
Line 89 
   
 #if defined(VISUAL) || defined(__MINGW32__) || defined(MPI)  #if defined(VISUAL) || defined(__MINGW32__) || defined(MPI)
 struct IOFP {  struct IOFP {
         STREAM *in,*out;    STREAM *in,*out;
         char *inbuf,*outbuf;    char *inbuf,*outbuf;
         int s,conv;    int s,conv;
         char *socket;    char *socket;
 };  };
   
 void ws_loadv(STREAM *,V *);  void ws_loadv(STREAM *,V *);
Line 103  V ws_load_convv(int);
Line 103  V ws_load_convv(int);
 int ws_save_convv(V);  int ws_save_convv(V);
 #else  #else
 struct IOFP {  struct IOFP {
         FILE *in,*out;    FILE *in,*out;
         char *inbuf,*outbuf;    char *inbuf,*outbuf;
         int s,conv;    int s,conv;
         char *socket;    char *socket;
 };  };
 #endif  #endif
 #endif /* _COM_H_ */  #endif /* _COM_H_ */

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>