diff options
Diffstat (limited to 'packages/ptc/src/wince/gdi/wincebitmapinfod.inc')
-rw-r--r-- | packages/ptc/src/wince/gdi/wincebitmapinfod.inc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/ptc/src/wince/gdi/wincebitmapinfod.inc b/packages/ptc/src/wince/gdi/wincebitmapinfod.inc new file mode 100644 index 0000000000..a023431228 --- /dev/null +++ b/packages/ptc/src/wince/gdi/wincebitmapinfod.inc @@ -0,0 +1,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; |