Jump to content

SMHSTRUCT

From EDM2
Revision as of 19:32, 25 April 2025 by Martini (talk | contribs) (Created page with "Send-message-hook structure. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _SMHSTRUCT { MPARAM mp2; Parameter 2.: MPARAM mp1; Parameter 1.: ULONG msg; Message identity.: HWND hwnd; Window handle.: ULONG model; Message identity.: } SMHSTRUCT; typedef SMHSTRUCT * PSMHSTRUCT ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Send-message-hook structure.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _SMHSTRUCT {
  MPARAM     mp2;    /* Parameter 2. */
  MPARAM     mp1;    /* Parameter 1. */
  ULONG      msg;    /* Message identity. */
  HWND       hwnd;   /* Window handle. */
  ULONG      model;  /* Message identity. */
} SMHSTRUCT;

typedef   SMHSTRUCT   * PSMHSTRUCT ;