| version 1.13, 2002/11/07 13:32:06 |
version 1.15, 2002/11/08 02:54:11 |
|
|
| /* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc.c,v 1.12 2002/02/24 10:27:20 takayama Exp $ */ |
/* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc.c,v 1.14 2002/11/07 23:52:20 takayama Exp $ */ |
| #include <stdio.h> |
#include <stdio.h> |
| #include <sys/types.h> |
#include <sys/types.h> |
| #include <sys/stat.h> |
#include <sys/stat.h> |
| Line 598 int oxInitClient(oxclientp client) |
|
| Line 598 int oxInitClient(oxclientp client) |
|
| client->mathcapObjp = NULL; |
client->mathcapObjp = NULL; |
| client->controlByteOrder = OX_BYTE_NETWORK_BYTE_ORDER; |
client->controlByteOrder = OX_BYTE_NETWORK_BYTE_ORDER; |
| client->engineByteOrder = OX_BYTE_NETWORK_BYTE_ORDER; |
client->engineByteOrder = OX_BYTE_NETWORK_BYTE_ORDER; |
| |
client->engineID = -1; |
| return(0); |
return(0); |
| } |
} |
| |
|
| Line 1022 int oxTellMyByteOrder(int fd) { |
|
| Line 1023 int oxTellMyByteOrder(int fd) { |
|
| } |
} |
| |
|
| |
|
| |
struct object OxClientList[MAX_N_OF_CLIENT]; |
| |
int OxClientListn = 0; |
| |
|
| |
int oxGetClientID() { |
| |
extern struct object OxClientList[]; |
| |
extern int OxClientListn; |
| |
extern struct object Nobj; |
| |
int i; |
| |
for (i=0; i<OxClientListn; i++) { |
| |
if ((OxClientList[i]).tag == Snull) { |
| |
return i; |
| |
} |
| |
} |
| |
i = OxClientListn; |
| |
(OxClientList[i]).tag = Snull; |
| |
if (OxClientListn < MAX_N_OF_CLIENT-1) { |
| |
OxClientListn++; |
| |
return i; |
| |
}else{ |
| |
fprintf(MyErrorOut,"oxGetClientID(): the client table is full. Returns ID = 0.\n"); |
| |
return 0; |
| |
} |
| |
} |
| |
|