Jump to content

OWNERBACKGROUND

From EDM2
Revision as of 01:02, 21 April 2025 by Martini (talk | contribs) (Created page with "Structure that contains information about painting the container window's background by the container owner. This structure is used in the CM_PAINTBACKGROUND container message only. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _OWNERBACKGROUND { HWND hwnd; Window handle.: HPS hps; Presentation-space handle.: RECTL rclBackground; Background rectangle.: LONG...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains information about painting the container window's background by the container owner. This structure is used in the CM_PAINTBACKGROUND container message only.

Type

struct

C Declaration Method

typedef

Example Code


typedef struct _OWNERBACKGROUND {
  HWND      hwnd;           /*  Window handle. */
  HPS       hps;            /*  Presentation-space handle. */
  RECTL     rclBackground;  /*  Background rectangle. */
  LONG      idWindow;       /*  Window ID. */
} OWNERBACKGROUND;

typedef   OWNERBACKGROUND   * POWNERBACKGROUND ;