/**************************************************************************** * * * (c) BBC 1992-2000 : Author Simon Dowson * * * * BNCS.H : General BNCS Constants * * * ****************************************************************************/ // V4.1 09/09/2004 Version for Synergy //****************************************************************************/ // Limits #ifdef BNCS_IPC_V6 // These values are intended to be for "legacy" API/IPC #define MAX_DEVICES 32767 #define MAXDEVICES MAX_DEVICES #define MAX_WORKSTATIONS 65535 #define MAXWORKSTATIONS MAX_WORKSTATIONS #define MAX_SLOTSIZE 256 #define MAX_SLOTSIZE_V6 1024 #define MAX_SLOTS 65535 #define MAXDATABASES_V2 10 #define MAXDATABASES_V45 65536 #define MAXDESTS 65535 #define MAXSRCES 32767 #define MAXSLOTS MAXDESTS #define MAXINDEX MAXDESTS #elif BNCS_IPC_V7 // these are intended as for new API/IPC #define MAX_DEVICES 4294967295 #define MAXDEVICES MAX_DEVICES #define MAX_WORKSTATIONS 4294967295 #define MAXWORKSTATIONS MAX_WORKSTATIONS #define MAX_SLOTSIZE 1024 #define MAX_SLOTS 4294967295 #define MAXDATABASES_V2 10 #define MAXDATABASES_V45 4294967295 #define MAXDESTS 4294967295 #define MAXSRCES 2147483647 #define MAXSLOTS MAXDESTS #define MAXINDEX MAXDESTS #else // these values are for "classic" BNCS #define MAX_DEVICES 999 #define MAXDEVICES MAX_DEVICES #define MAX_WORKSTATIONS 999 #define MAXWORKSTATIONS MAX_WORKSTATIONS #define MAX_SLOTSIZE 256 #define MAX_SLOTS 4096 #define MAXDATABASES_V2 10 #define MAXDATABASES_V45 65536 #define MAXDESTS 4096 #define MAXSRCES 4096 #define MAXSLOTS MAXDESTS #define MAXINDEX MAXDESTS #endif // Driver to CSI Status messages #define STATUS_OK 0 #define STATUS_WARNING 1 #define STATUS_FAIL 2 // CSI Client connection mesages #define CSI_CONNECT 0x01 #define CSI_DISCONNECT 0x02 #define CSI_CONNECT32 0x04 #define DRIVER_32BIT 0x8000 #define DRIVER_32BIT_MASK 0x7FFF #define CTRL_32BIT 0x4000 #define CTRL_32BIT_MASK 0xBFFF #define REG_DEVICE_ISWITCH (0x8000) /* Use with BBC_GETDBASEINDEX iSwitch index*/ /* in hData & iSize arrays internal to CSI */ #define DEVICE_EOPS (0x8000) /* Use with messages: BBC_TXRTRNETMSG, */ /* BBC_TXGPINETMSG, BBC_TXCSINETMSG & */ /* BBC_TXINFONETMSG */ /* OR with "wDevice" parameter */ /* 0x8000 is an end of sequence delimiter, */ /* last packet in a sequence for CSI. This */ /* is OR'd into the device parameter of */ /* SendMessage() command. This causes CSI */ #define REG_DEVICE_ADD (0x8000) /* Use with BBC_REGDEVICE */ /* Removes previous registration if the */ // Session result codes #define SUCCESS 0 #define BUSY 1 #define WSNOTFOUND 2 #define FILENOTFOUND 3 #define OPENERROR 4 #define READERROR 5 #define WRITEERROR 6 #define FILEISNEWER 7 #define DISKFULL 8 #define TIMEOUT 9 #define DEVICENOTFOUND 10 // Revertive modes #define REVERTIVE 1 #define POLL 2 // Interface modes #define IFMODE_NONE 0 #define IFMODE_RXONLY 1 #define IFMODE_TXRX 2 #define IFMODE_FORCETXRX 3 #define IFMODE_TXRXINQ 4 #define IFMODE_RXONLYBROKEN 5 // Packet header sizes #define RR_HEADERSIZE 24 #define IR_HEADERSIZE 24 #define GR_HEADERSIZE 16 // Device Driver support #define RTRMESSAGE 0x1000 #define GPIMESSAGE 0x2000 #define INFMESSAGE 0x3000 #define UNIMESSAGE 0x4000 #define SENDPACKETSERIALNUMBERMESSAGESIZE 16 #define RTRMESSAGESIZE 8 #define GPIMESSAGESIZE 7 #define INFMESSAGESIZE 7 #define UNIMESSAGESIZE 7 #define SUCCESS 0 #define INVALIDDEVICE 1 #define DEVICEINUSE 2 #define DRIVERNOTENABLED 3 #define UNIHEADERSIZE 6 #define TYPEMASK 0xF000 #define DRIVERMASK 0x0FFF #define WSNUMBER 3 #define COMMANDS 5 // Network name definations #define STATUS_NETWORK_NAME "STATUS_CHANNEL" // Network status messages #define NETWORK_FAIL 0 #define NETWORK_OK 1 // Applex <-> AppleCore interworking constants #define AXAC_FILESAVE 1 #define AXAC_FILELOAD 2 #define AXAC_FILEAPPEND 3