windows.pp 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. This file is part of the Free Pascal run time library.
  3. This unit contains the record definition for the Win32 API
  4. Copyright (c) 1999-2000 by Florian KLaempfl,
  5. member of the Free Pascal development team.
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************
  12. Changes :
  13. 08-15-2005 : [email protected], WCE 4.21 SE, First release
  14. 02-09-2006 : updated
  15. }
  16. unit windows;
  17. {$ifndef NO_SMART_LINK}
  18. {$smartlink on}
  19. {$endif}
  20. { stuff like array of const is used }
  21. {$mode objfpc}
  22. {$calling stdcall}
  23. interface
  24. {$define read_interface}
  25. {$undef read_implementation}
  26. {$define UNICODE} //ce is unicode only
  27. {$calling cdecl} //convention is cdecl except for x86 emulator stdcall
  28. //change nothing on arm
  29. {$i base.inc}
  30. {$i errors.inc}
  31. {$i defines.inc}
  32. {$i struct.inc}
  33. {$i messages.inc}
  34. {$i unidef.inc}
  35. {$i func.inc}
  36. {$i ascfun.inc}
  37. {$i coredll.inc}
  38. {$i aygshell.inc}
  39. {$i commctrl.inc}
  40. {$i redef.inc}
  41. {$undef read_interface}
  42. implementation
  43. {$define read_implementation}
  44. {$i base.inc}
  45. {$i errors.inc}
  46. {$i defines.inc}
  47. {$i struct.inc}
  48. {$i messages.inc}
  49. {$i unidef.inc}
  50. {$i func.inc}
  51. {$i ascfun.inc}
  52. {$i coredll.inc}
  53. {$i aygshell.inc}
  54. {$i commctrl.inc}
  55. {$i redef.inc}
  56. {$undef read_implementation}
  57. begin
  58. end.