mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 11:18:18 +02:00
23 lines
289 B
ObjectPascal
23 lines
289 B
ObjectPascal
{$IFNDEF FPC_DOTTEDUNITS}
|
|
unit messages;
|
|
{$ENDIF FPC_DOTTEDUNITS}
|
|
|
|
|
|
interface
|
|
|
|
{$IFDEF FPC_DOTTEDUNITS}
|
|
uses
|
|
WinApi.Windows;
|
|
{$ELSE FPC_DOTTEDUNITS}
|
|
uses
|
|
windows;
|
|
{$ENDIF FPC_DOTTEDUNITS}
|
|
|
|
{$DEFINE read_interface}
|
|
{$DEFINE MESSAGESUNIT}
|
|
{$I messages.inc}
|
|
|
|
implementation
|
|
|
|
end.
|