Changeset 68 for branches/Independent/SystemApi.pas
- Timestamp:
- Dec 17, 2024, 11:10:31 PM (4 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Independent/SystemApi.pas
r67 r68 25 25 procedure SetWindowRect(Handle: THandle; Rect: TRect); override; 26 26 procedure SetWindowVisible(Handle: THandle; Visible: Boolean); override; 27 function GetMousePosition: TPoint; override; 27 28 end; 28 29 … … 101 102 end; 102 103 104 function TSystemApi.GetMousePosition: TPoint; 105 begin 106 Result := System.Mouse.GetPosition; 107 end; 108 103 109 end. 104 110
Note:
See TracChangeset
for help on using the changeset viewer.