fpc/rtl/win16/winprocs.pp
nickysn 55a8158c51 * split the win16 wintypes and winprocs units into include files, so they can
also be included in the implementation part of the system unit

git-svn-id: trunk@31564 -
2015-09-06 23:02:20 +00:00

19 lines
225 B
ObjectPascal

unit winprocs;
{$if defined(FPC_MM_COMPACT) or defined(FPC_MM_LARGE) or defined(FPC_MM_HUGE)}
{$define VAR_PARAMS_ARE_FAR}
{$endif}
interface
uses
wintypes;
{$I winprocsh.inc}
implementation
{$I winprocs.inc}
end.