summaryrefslogtreecommitdiff
path: root/src/corelib/gdi/fpg_gdi.pas
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/gdi/fpg_gdi.pas')
-rw-r--r--src/corelib/gdi/fpg_gdi.pas19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/corelib/gdi/fpg_gdi.pas b/src/corelib/gdi/fpg_gdi.pas
index ffaefff2..bbe52180 100644
--- a/src/corelib/gdi/fpg_gdi.pas
+++ b/src/corelib/gdi/fpg_gdi.pas
@@ -300,6 +300,12 @@ type
end;
+ { TfpgGDITimer }
+
+ TfpgGDITimer = class(TfpgBaseTimer)
+ end;
+
+
implementation
uses
@@ -333,13 +339,14 @@ const
// From Lazarus wince\winext.pas:
function GET_X_LPARAM(lp : Windows.LParam) : longint;
- begin
- result:=smallint(LOWORD(lp));
- end;
+begin
+ result:=smallint(LOWORD(lp));
+end;
+
function GET_Y_LPARAM(lp : Windows.LParam) : longint;
- begin
- result:=smallint(HIWORD(lp));
- end;
+begin
+ result:=smallint(HIWORD(lp));
+end;
// *** copied from Lazarus
function MulDiv(nNumber, nNumerator, nDenominator: Integer): Integer;