| 123456789101112131415161718192021222324252627282930 |
- #ifndef _GPIB_H_
- #define _GPIB_H_
- /*
- struct _GPIB_PROTOCOL_COMMAND
- {
- char * pstrCommandMnemonic;
- unsigned char cCommandID;
- };
- typedef struct _GPIB_PROTOCOL_COMMAND GPIB_PROTOCOL_COMMAND;
- __pkd__ struct _GPIB_PROTOCOL_DICTONARY
- {
- unsigned short int wCommandCount;
- GPIB_PROTOCOL_COMMAND arstCommands[GPIB_PROTOCOL_COMMANDS_COUNT];
- } __pk__;
- typedef struct _GPIB_PROTOCOL_DICTONARY GPIB_PROTOCOL_DICTONARY;
- */
- #ifdef _USBTMC_C_
- #ifndef _GPIB_VAR_
- #define _GPIB_VAR_
- /*const __root GPIB_PROTOCOL_DICTONARY stGPIBProtocol;*/
- #endif
- #else
- extern const __root GPIB_PROTOCOL_DICTONARY stGPIBProtocol;
- #endif
-
- #endif
|