I am trying to compile some units from the Synopse framework which is designed mainly for Delphi and I need the Lazarus equivalents for some units and constants.
The Consts unit
WM_TIMER and TWMTimer which are used in a THintWindow unit. I am not sure if these are for the mORMot's own UI library for part of Delphi itself.
In the case of the Windows unit, I replace the code with:
{$ifdef FPC}
LCLIntf, LCLType, LMessages,
{$else}
Windows,
{$endif}
Are there other units besides these three units?