windows.pp 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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) 1993,97 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. {$define windows_include_files}
  15. interface
  16. {$define read_interface}
  17. {$undef read_implementation}
  18. {$warning starting interface of windows unit }
  19. {$i base.pp}
  20. {$i errors.pp}
  21. {$i defines.pp}
  22. {$i messages.pp}
  23. {$i struct.pp}
  24. {$i ascfun.pp}
  25. {$i unifun.pp}
  26. {$ifdef UNICODE}
  27. {$i unidef.pp}
  28. {$else not UNICODE}
  29. {$i ascdef.pp}
  30. {$endif UNICODE}
  31. {$i func.pp}
  32. implementation
  33. {$undef read_interface}
  34. {$define read_implementation}
  35. const External_library='kernel32';
  36. {$i base.pp}
  37. {$i errors.pp}
  38. {$i defines.pp}
  39. {$i messages.pp}
  40. {$i struct.pp}
  41. {$i ascfun.pp}
  42. {$i unifun.pp}
  43. {$ifdef UNICODE}
  44. {$i unidef.pp}
  45. {$else not UNICODE}
  46. {$i ascdef.pp}
  47. {$endif UNICODE}
  48. {$i func.pp}
  49. end.
  50. {
  51. $Log$
  52. Revision 1.1 1998-08-31 11:54:02 pierre
  53. * compilable windows.pp file
  54. still to do :
  55. - findout problems
  56. - findout the correct DLL for each call !!
  57. }