windows.pp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. interface
  18. {$define read_interface}
  19. {$undef read_implementation}
  20. {$i base.inc}
  21. {$i errors.inc}
  22. {$i defines.inc}
  23. {$i struct.inc}
  24. {$i messages.inc}
  25. {$i ascfun.inc}
  26. {$i unifun.inc}
  27. {$ifdef UNICODE}
  28. {$i unidef.inc}
  29. {$else not UNICODE}
  30. {$i ascdef.inc}
  31. {$endif UNICODE}
  32. {$i func.inc}
  33. {$i redef.inc}
  34. implementation
  35. {$undef read_interface}
  36. {$define read_implementation}
  37. {$i base.inc}
  38. {$i errors.inc}
  39. {$i defines.inc}
  40. {$i struct.inc}
  41. {$i messages.inc}
  42. {$i ascfun.inc}
  43. {$i unifun.inc}
  44. {$ifdef UNICODE}
  45. {$i unidef.inc}
  46. {$else not UNICODE}
  47. {$i ascdef.inc}
  48. {$endif UNICODE}
  49. {$i func.inc}
  50. {$i redef.inc}
  51. end.
  52. {
  53. $Log$
  54. Revision 1.5 2002-11-04 12:19:01 marco
  55. * Move tmsg and family to messages.inc. windows.pp needed include sequence patch
  56. Revision 1.4 2002/10/10 14:58:16 florian
  57. - removed conditionals for 0.99.14
  58. Revision 1.3 2002/09/07 16:01:29 peter
  59. * old logs removed and tabs fixed
  60. }