MACHINE_TENDING_FOCAS_ERR_STRING
This structure defines the error information returned from the FOCAS interface used in Machine Tending operations. It includes the communication handle, error code, and descriptive error message string.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
FOCAS communication handle identifier |
|
2 |
|
|
Error code value returned by the FOCAS interface |
|
4 |
|
|
Null-terminated string describing the error details |
Total size: 260 bytes
Defined in: DRFS.h
typedef struct _MACHINE_TENDING_FOCAS_ERR_STRING
{
unsigned short _hHandle; /* FOCAS handle identifier */
short _ErrorCode; /* Error code value */
char _szErrorString[256]; /* Error description string */
} MACHINE_TENDING_FOCAS_ERR_STRING, *LPMACHINE_TENDING_FOCAS_ERR_STRING;