Jump to content

CSBITMAPDATA

From EDM2
Revision as of 19:08, 25 April 2025 by Martini (talk | contribs) (Created page with "This is the bitmap data structure for the circular slider buttons. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _CSBITMAPDATA { HBITMAP hbmLeftUp; HBITMAP hbmLeftDown; HBITMAP hmbRightUp; HBITMAP hbmRightDown; } CSBITMAPDATA; typedef CSBITMAPDATA * PCSBITMAPDATA ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This is the bitmap data structure for the circular slider buttons.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _CSBITMAPDATA {
  HBITMAP     hbmLeftUp;
  HBITMAP     hbmLeftDown;
  HBITMAP     hmbRightUp;
  HBITMAP     hbmRightDown;
} CSBITMAPDATA;

typedef   CSBITMAPDATA   * PCSBITMAPDATA ;