summaryrefslogtreecommitdiff
path: root/packages/ptc/src/wince/gdi/wincebitmapinfod.inc
blob: a0234312286470771057c0b11d64e8ec7bc2e79b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Type
  TWinCEBitmapInfo = Class(TObject)
  Private
    FBitmapInfo : PBITMAPINFO;
//    FPixels : Pointer;
    FFormat : TPTCFormat;
    FWidth, FHeight, FPitch : Integer;
  Public
    Constructor Create(AWidth, AHeight : Integer);
    Destructor Destroy; Override;
    Property BMI : PBITMAPINFO Read FBitmapInfo;
    Property Width : Integer Read FWidth;
    Property Height : Integer Read FHeight;
    Property Pitch : Integer Read FPitch;
    Property Format : TPTCFormat Read FFormat;
//    Property Pixels : Pointer Read FPixels;
  End;