diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2013-04-10 17:39:50 +0100 |
---|---|---|
committer | David Laurence Emerson <dle3ab@angelbase.com> | 2013-05-28 00:42:52 -0700 |
commit | 49526e26477bddb4837f56dc545b09ac8eb9f3b0 (patch) | |
tree | 6402872dd51e22ed40d00b40c357d27547f5d980 | |
parent | 11e3c2f695dd463d1c33ad5ba5a5a642d3725f2f (diff) | |
download | fpGUI-49526e26477bddb4837f56dc545b09ac8eb9f3b0.tar.xz |
Change to still support FPC 2.6.0 during the fpGUI 1.0 release
Even though I normally say I only support latest released FPC versions, this
is a small change.
-rw-r--r-- | src/corelib/fpg_imgfmt_bmp.pas | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/corelib/fpg_imgfmt_bmp.pas b/src/corelib/fpg_imgfmt_bmp.pas index ff354898..00637f3b 100644 --- a/src/corelib/fpg_imgfmt_bmp.pas +++ b/src/corelib/fpg_imgfmt_bmp.pas @@ -38,6 +38,12 @@ implementation uses fpg_utils; +{$IF FPC_FULLVERSION<20602} +type + uint16 = word; + uint32 = cardinal; +{$IFEND} + procedure ReadImage_OS2BMP(img: TfpgImage; bmp: Pointer; bmpsize: longword); forward; |