12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {
- This file is part of the Free Pascal run time library.
- This unit contains the record definition for the Win64 API
- Copyright (c) 1999-2006 by Florian KLaempfl,
- member of the Free Pascal development team.
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- **********************************************************************}
- {$IFNDEF FPC_DOTTEDUNITS}
- unit windows;
- {$ENDIF FPC_DOTTEDUNITS}
- {$PACKSET 1}
- {$ifndef NO_SMART_LINK}
- {$smartlink on}
- {$endif}
- { stuff like array of const is used }
- {$mode objfpc}
- {$modeswitch ADVANCEDRECORDS}
- {$modeswitch class}
- {$inline on}
- {$calling stdcall}
- {$ifdef FPC_OS_UNICODE}
- {$define UNICODE}
- {$endif}
- interface
- {$define read_interface}
- {$undef read_implementation}
- {$i base.inc}
- {$i errors.inc}
- {$i defines.inc}
- {$i struct.inc}
- {$i messages.inc}
- {$i ascfun.inc}
- {$i unifun.inc}
- {$ifdef UNICODE}
- {$i unidef.inc}
- {$else not UNICODE}
- {$i ascdef.inc}
- {$endif UNICODE}
- {$i func.inc}
- {$i redef.inc}
- implementation
- {$undef read_interface}
- {$define read_implementation}
- {$i base.inc}
- {$i errors.inc}
- {$i defines.inc}
- {$i struct.inc}
- {$i messages.inc}
- {$i ascfun.inc}
- {$i unifun.inc}
- {$ifdef UNICODE}
- {$i unidef.inc}
- {$else not UNICODE}
- {$i ascdef.inc}
- {$endif UNICODE}
- {$i func.inc}
- {$i redef.inc}
- end.
|