windows.pp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 VER0_99_14}
  15. {$ifndef NO_SMART_LINK}
  16. {$define support_smartlink}
  17. {$endif}
  18. {$endif}
  19. {$ifdef support_smartlink}
  20. {$smartlink on}
  21. {$endif}
  22. interface
  23. {$define read_interface}
  24. {$undef read_implementation}
  25. {$i base.inc}
  26. {$i errors.inc}
  27. {$i defines.inc}
  28. {$i messages.inc}
  29. {$i struct.inc}
  30. {$i ascfun.inc}
  31. {$i unifun.inc}
  32. {$ifdef UNICODE}
  33. {$i unidef.inc}
  34. {$else not UNICODE}
  35. {$i ascdef.inc}
  36. {$endif UNICODE}
  37. {$i func.inc}
  38. {$i redef.inc}
  39. implementation
  40. {$undef read_interface}
  41. {$define read_implementation}
  42. {$i base.inc}
  43. {$i errors.inc}
  44. {$i defines.inc}
  45. {$i messages.inc}
  46. {$i struct.inc}
  47. {$i ascfun.inc}
  48. {$i unifun.inc}
  49. {$ifdef UNICODE}
  50. {$i unidef.inc}
  51. {$else not UNICODE}
  52. {$i ascdef.inc}
  53. {$endif UNICODE}
  54. {$i func.inc}
  55. {$i redef.inc}
  56. end.
  57. {
  58. $Log$
  59. Revision 1.2 2000-07-13 11:33:58 michael
  60. + removed logs
  61. }