RIP_INFO structure (minwinbase.h)

Contains the error that caused the RIP debug event.

Syntax

typedef struct _RIP_INFO {
  DWORD dwError;
  DWORD dwType;
} RIP_INFO, *LPRIP_INFO;

Members

dwError

The error that caused the RIP debug event. For more information, see Error Handling.

dwType

Any additional information about the type of error that caused the RIP debug event. This member can be one of the following values.

Value Meaning
SLE_ERROR
0x00000001
Indicates that invalid data was passed to the function that failed. This caused the application to fail.
SLE_MINORERROR
0x00000002
Indicates that invalid data was passed to the function, but the error probably will not cause the application to fail.
SLE_WARNING
0x00000003
Indicates that potentially invalid data was passed to the function, but the function completed processing.
0
Indicates that only dwError was set.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Header minwinbase.h (include Minwinbase.h, Windows.h)

See also

DEBUG_EVENT