Jump to content

CSBITMAPDATA: Difference between revisions

From EDM2
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"
 
(No difference)

Latest revision as of 19:08, 25 April 2025

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 ;