=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/include/com.h,v retrieving revision 1.6 retrieving revision 1.11 diff -u -p -r1.6 -r1.11 --- OpenXM_contrib2/asir2000/include/com.h 2001/12/25 05:28:38 1.6 +++ OpenXM_contrib2/asir2000/include/com.h 2003/03/07 06:39:56 1.11 @@ -45,11 +45,11 @@ * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. * - * $OpenXM: OpenXM_contrib2/asir2000/include/com.h,v 1.5 2001/12/21 08:23:12 noro Exp $ + * $OpenXM: OpenXM_contrib2/asir2000/include/com.h,v 1.10 2003/03/07 03:12:26 noro Exp $ */ #ifndef _COM_H_ #define _COM_H_ -#if defined(VISUAL) || MPI +#if defined(VISUAL) || defined(MPI) #include "wsio.h" #endif @@ -69,6 +69,8 @@ #define IS_CYGWIN 0 #endif #include +#else +#define IS_CYGWIN 0 #endif #define N32 0x80 @@ -85,9 +87,10 @@ #define C_PRIV C_ENDARG+1 #define C_SHUTDOWN 6 -#if defined(VISUAL) || MPI +#if defined(VISUAL) || defined(MPI) struct IOFP { STREAM *in,*out; + char *inbuf,*outbuf; int s,conv; char *socket; }; @@ -101,6 +104,7 @@ int ws_save_convv(V); #else struct IOFP { FILE *in,*out; + char *inbuf,*outbuf; int s,conv; char *socket; };