IsDialogMessage function user32

int IsDialogMessage(
  1. int hDlg,
  2. Pointer<MSG> lpMsg
)

Determines whether a message is intended for the specified dialog box and, if it is, processes the message.

BOOL IsDialogMessageW(
  HWND  hDlg,
  LPMSG lpMsg
);

Implementation

int IsDialogMessage(int hDlg, Pointer<MSG> lpMsg) =>
    _IsDialogMessage(hDlg, lpMsg);