1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- {
- This file is part of the Free Pascal run time library.
- This unit contains the record definition for the Win32 API
- Copyright (c) 1999-2000 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.
- **********************************************************************
- Changes :
- 08-15-2005 : [email protected], WCE 4.21 SE, First release
- 02-09-2006 : updated
- }
- unit windows;
- {$ifndef NO_SMART_LINK}
- {$smartlink on}
- {$endif}
- { stuff like array of const is used }
- {$mode objfpc}
- {$calling stdcall}
- interface
- {$define read_interface}
- {$undef read_implementation}
- {$define UNICODE} //ce is unicode only
- {$calling cdecl} //convention is cdecl except for x86 emulator stdcall
- //change nothing on arm
- {$i base.inc}
- {$i errors.inc}
- {$i defines.inc}
- {$i struct.inc}
- {$i messages.inc}
- {$i unidef.inc}
- {$i func.inc}
- {$i ascfun.inc}
- {$i coredll.inc}
- {$i aygshell.inc}
- {$i commctrl.inc}
- {$i redef.inc}
- {$undef read_interface}
- implementation
- {$define read_implementation}
- {$i base.inc}
- {$i errors.inc}
- {$i defines.inc}
- {$i struct.inc}
- {$i messages.inc}
- {$i unidef.inc}
- {$i func.inc}
- {$i ascfun.inc}
- {$i coredll.inc}
- {$i aygshell.inc}
- {$i commctrl.inc}
- {$i redef.inc}
- {$undef read_implementation}
- begin
- end.
|