MONERRSTRUCT structure (ddeml.h)

Contains information about the current Dynamic Data Exchange (DDE) error. A DDE monitoring application can use this structure to monitor errors returned by DDE Management Library functions.

Syntax

typedef struct tagMONERRSTRUCT {
  UINT   cb;
  UINT   wLastError;
  DWORD  dwTime;
  HANDLE hTask;
} MONERRSTRUCT, *PMONERRSTRUCT;

Members

cb

Type: UINT

The structure's size, in bytes.

wLastError

Type: UINT

The current error.

dwTime

Type: DWORD

The Windows time at which the error occurred. Windows time is the number of milliseconds that have elapsed since the system was booted.

hTask

Type: HANDLE

A handle to the task (application instance) that called the DDE function that caused the error.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header ddeml.h (include Windows.h)

See also

Conceptual

Dynamic Data Exchange Management Library

MONCBSTRUCT

MONCONVSTRUCT

MONHSZSTRUCT

MONLINKSTRUCT

MONMSGSTRUCT

Reference