version 1.8, 2000/01/20 15:32:21 |
version 1.11, 2000/03/13 07:47:15 |
|
|
/* -*- mode: C; coding: euc-japan -*- */ |
/* -*- mode: C; coding: euc-japan -*- */ |
/* $OpenXM: OpenXM/src/ox_math/math2.tm,v 1.7 1999/12/14 09:31:55 ohara Exp $ */ |
/* $OpenXM: OpenXM/src/ox_math/math2.tm,v 1.10 2000/02/14 09:39:12 ohara Exp $ */ |
|
|
/* サーバとの通信路を開く */ |
|
int OX_start P((const char *)); |
int OX_start P((const char *)); |
:Begin: |
:Begin: |
:Function: OX_start |
:Function: OX_start |
Line 29 int OX_start_insecure P ((const char *, int, int)); |
|
Line 28 int OX_start_insecure P ((const char *, int, int)); |
|
:ReturnType: Integer |
:ReturnType: Integer |
:End: |
:End: |
|
|
int OX_execute_string P((const char *)); |
int OX_execute_string P((int id, const char *)); |
|
|
:Begin: |
:Begin: |
:Function: OX_execute_string |
:Function: OX_execute_string |
:Pattern: OxExecuteString[s_String] |
:Pattern: OxExecuteString[id_Integer, s_String] |
:Arguments: {s} |
:Arguments: {id, s} |
:ArgumentTypes: {String} |
:ArgumentTypes: {Integer, String} |
:ReturnType: Integer |
:ReturnType: Integer |
:End: |
:End: |
|
|
int OX_parse P((const char *)); |
int OX_parse P((int id, const char *)); |
|
|
:Begin: |
:Begin: |
:Function: OX_parse |
:Function: OX_parse |
:Pattern: OxParse[s_String] |
:Pattern: OxParse[id_Integer, s_String] |
:Arguments: {s} |
:Arguments: {id, s} |
:ArgumentTypes: {String} |
:ArgumentTypes: {Integer, String} |
:ReturnType: Integer |
:ReturnType: Integer |
:End: |
:End: |
|
|
char *OX_popString P(()); |
int OX_sendMessage P((int id, const char *)); |
|
|
:Begin: |
:Begin: |
|
:Function: OX_sendMessage |
|
:Pattern: OxSendMessage[id_Integer, s_String] |
|
:Arguments: {id, s} |
|
:ArgumentTypes: {Integer, String} |
|
:ReturnType: Integer |
|
:End: |
|
|
|
char *OX_popString P((int id)); |
|
|
|
:Begin: |
:Function: OX_popString |
:Function: OX_popString |
:Pattern: OxPopString[] |
:Pattern: OxPopString[id_Integer] |
:Arguments: {} |
:Arguments: {id} |
:ArgumentTypes: {} |
:ArgumentTypes: {Integer} |
:ReturnType: String |
:ReturnType: String |
:End: |
:End: |
|
|
void OX_popCMO P(()); |
void OX_popCMO P((int id)); |
|
|
:Begin: |
:Begin: |
:Function: OX_popCMO |
:Function: OX_popCMO |
:Pattern: OxPopCMO[] |
:Pattern: OxPopCMO[id_Integer] |
:Arguments: {} |
:Arguments: {id} |
:ArgumentTypes: {} |
:ArgumentTypes: {Integer} |
:ReturnType: Manual |
:ReturnType: Manual |
:End: |
:End: |
|
|
void OX_get P(()); |
void OX_get P((int id)); |
|
|
:Begin: |
:Begin: |
:Function: OX_get |
:Function: OX_get |
:Pattern: OxGet[] |
:Pattern: OxGet[id_Integer] |
:Arguments: {} |
:Arguments: {id} |
:ArgumentTypes: {} |
:ArgumentTypes: {Integer} |
:ReturnType: Manual |
:ReturnType: Manual |
:End: |
:End: |
|
|
int OX_close P(()); |
int OX_close P((int id)); |
|
|
:Begin: |
:Begin: |
:Function: OX_close |
:Function: OX_close |
:Pattern: OxClose[] |
:Pattern: OxClose[id_Integer] |
:Arguments: {} |
:Arguments: {id} |
:ArgumentTypes: {} |
:ArgumentTypes: {Integer} |
:ReturnType: Integer |
:ReturnType: Integer |
:End: |
:End: |
|
|
int OX_reset P(()); |
int OX_reset P((int id)); |
|
|
:Begin: |
:Begin: |
:Function: OX_reset |
:Function: OX_reset |
:Pattern: OxReset[] |
:Pattern: OxReset[id_Integer] |
:Arguments: {} |
:Arguments: {id} |
:ArgumentTypes: {} |
:ArgumentTypes: {Integer} |
:ReturnType: Integer |
:ReturnType: Integer |
:End: |
:End: |
|
|