◄Up► ◄Next► ◄Previous► ──────────────────────────────────────────────────────────────────────────── #define INCL_WINERRORS typedef struct _ERRINFO { /* erri */ USHORT cbFixedErrInfo; ERRORID idError; USHORT cDetailLevel; USHORT offaoffszMsg; USHORT offBinaryData; } ERRINFO; The ERRINFO structure contains the previous error for the current thread. Field Description ──────────────────────────────────────────────────────────────────────────── cbFixedErrInfo Specifies the length of the structure. idError Identifies the error. This field is identical to the value returned by the WinGetLastError function. cDetailLevel Specifies the number of levels of detail. offaoffszMsg Specifies an offset to an array of offsets to messages. offBinaryData Specifies an offset to the binary data. See Also WinFreeErrorInfo, WinGetErrorInfo, WinGetLastError ♦