version 1.6, 2003/11/18 11:08:27 |
version 1.10, 2004/09/17 07:27:28 |
|
|
/* $OpenXM: OpenXM/src/kan96xx/plugin/oxKan0.h,v 1.5 2002/11/08 02:54:11 takayama Exp $ */ |
/* $OpenXM: OpenXM/src/kan96xx/plugin/oxKan0.h,v 1.9 2004/03/08 08:24:42 takayama Exp $ */ |
/* ox_kan0.h */ |
/* ox_kan0.h */ |
|
|
#define mymalloc(n) malloc(n) |
#define mymalloc(n) sGC_malloc(n) |
#define myfree(p) free(p) |
#define myfree(p) sGC_free(p) |
typedef FILE2 * ox_stream; |
typedef FILE2 * ox_stream; |
|
|
int socketOpen(char *serverName,int portNumber); |
int socketOpen(char *serverName,int portNumber); |
Line 90 int oxIsThereErrorClient(oxclientp client); /* 1 : er |
|
Line 90 int oxIsThereErrorClient(oxclientp client); /* 1 : er |
|
oxclientp oxCreateClient(char *ipname,int portStream,int portControl); |
oxclientp oxCreateClient(char *ipname,int portStream,int portControl); |
oxclientp oxCreateClientFile(char *fileName,char *mode,char *controlFileName,char *cmode); |
oxclientp oxCreateClientFile(char *fileName,char *mode,char *controlFileName,char *cmode); |
oxclientp oxCreateClient2(int fdstream,int portStream, |
oxclientp oxCreateClient2(int fdstream,int portStream, |
int fdcontrol,int portControl,int ipmask,char *pass); |
int fdcontrol,int portControl,int ipmask,char *cpass,char *dpass); |
int oxSetByteOrder(int fd); |
int oxSetByteOrder(int fd); |
int oxTellMyByteOrder(int fdOut,int fdIn); |
int oxTellMyByteOrder(int fdOut,int fdIn); |
|
|
Line 138 void oxReqSetName(ox_stream os,char *name); |
|
Line 138 void oxReqSetName(ox_stream os,char *name); |
|
void oxReqEvalName(ox_stream os,char *name); |
void oxReqEvalName(ox_stream os,char *name); |
void oxReqExecuteStringByLocalParser(ox_stream os,char *s); |
void oxReqExecuteStringByLocalParser(ox_stream os,char *s); |
void oxReqExecuteFunction(ox_stream os,char *s); |
void oxReqExecuteFunction(ox_stream os,char *s); |
|
void oxReqExecuteFunctionWithOptionalArgument(ox_stream os,char *s); |
void oxReqPopString(ox_stream os); |
void oxReqPopString(ox_stream os); |
void oxReqPushString(ox_stream os,char *s); |
void oxReqPushString(ox_stream os,char *s); |
void oxReqPopCMO(ox_stream os); |
void oxReqPopCMO(ox_stream os); |
Line 153 int oxRemovePortFile(void); |
|
Line 154 int oxRemovePortFile(void); |
|
|
|
#define MAX_N_OF_CLIENT 1024 |
#define MAX_N_OF_CLIENT 1024 |
int oxGetClientID(); |
int oxGetClientID(); |
|
|
|
char *oxFIDtoStr(int id); |