2
0

windows.pp 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. This unit contains the record definition for the Win32 API
  5. Copyright (c) 1999-2000 by Florian KLaempfl,
  6. member of the Free Pascal development team.
  7. See the file COPYING.FPC, included in this distribution,
  8. for details about the copyright.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. **********************************************************************}
  13. unit windows;
  14. {$ifndef NO_SMART_LINK}
  15. {$smartlink on}
  16. {$endif}
  17. {$calling stdcall}
  18. interface
  19. {$define read_interface}
  20. {$undef read_implementation}
  21. {$i base.inc}
  22. {$i errors.inc}
  23. {$i defines.inc}
  24. {$i struct.inc}
  25. {$i messages.inc}
  26. {$i ascfun.inc}
  27. {$i unifun.inc}
  28. {$ifdef UNICODE}
  29. {$i unidef.inc}
  30. {$else not UNICODE}
  31. {$i ascdef.inc}
  32. {$endif UNICODE}
  33. {$i func.inc}
  34. {$i redef.inc}
  35. implementation
  36. {$undef read_interface}
  37. {$define read_implementation}
  38. {$i base.inc}
  39. {$i errors.inc}
  40. {$i defines.inc}
  41. {$i struct.inc}
  42. {$i messages.inc}
  43. {$i ascfun.inc}
  44. {$i unifun.inc}
  45. {$ifdef UNICODE}
  46. {$i unidef.inc}
  47. {$else not UNICODE}
  48. {$i ascdef.inc}
  49. {$endif UNICODE}
  50. {$i func.inc}
  51. {$i redef.inc}
  52. end.
  53. {
  54. $Log$
  55. Revision 1.6 2003-09-17 15:06:36 peter
  56. * stdcall patch
  57. Revision 1.5 2002/11/04 12:19:01 marco
  58. * Move tmsg and family to messages.inc. windows.pp needed include sequence patch
  59. Revision 1.4 2002/10/10 14:58:16 florian
  60. - removed conditionals for 0.99.14
  61. Revision 1.3 2002/09/07 16:01:29 peter
  62. * old logs removed and tabs fixed
  63. }