jwawinresrc.pas 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {******************************************************************************}
  2. { }
  3. { API interface Unit for Object Pascal }
  4. { }
  5. { Portions created by Microsoft are Copyright (C) 1995-2001 Microsoft }
  6. { Corporation. All Rights Reserved. }
  7. { }
  8. { Portions created by Marcel van Brakel are Copyright (C) 1999-2001 }
  9. { Marcel van Brakel. All Rights Reserved. }
  10. { }
  11. { Obtained through: Joint Endeavour of Delphi Innovators (Project JEDI) }
  12. { }
  13. { You may retrieve the latest version of this file at the Project JEDI }
  14. { APILIB home page, located at http://jedi-apilib.sourceforge.net }
  15. { }
  16. { The contents of this file are used with permission, subject to the Mozilla }
  17. { Public License Version 1.1 (the "License"); you may not use this file except }
  18. { in compliance with the License. You may obtain a copy of the License at }
  19. { http://www.mozilla.org/MPL/MPL-1.1.html }
  20. { }
  21. { Software distributed under the License is distributed on an "AS IS" basis, }
  22. { WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for }
  23. { the specific language governing rights and limitations under the License. }
  24. { }
  25. { Alternatively, the contents of this file may be used under the terms of the }
  26. { GNU Lesser General Public License (the "LGPL License"), in which case the }
  27. { provisions of the LGPL License are applicable instead of those above. }
  28. { If you wish to allow use of your version of this file only under the terms }
  29. { of the LGPL License and not to allow others to use your version of this file }
  30. { under the MPL, indicate your decision by deleting the provisions above and }
  31. { replace them with the notice and other provisions required by the LGPL }
  32. { License. If you do not delete the provisions above, a recipient may use }
  33. { your version of this file under either the MPL or the LGPL License. }
  34. { }
  35. { For more information about the LGPL: http://www.gnu.org/copyleft/lesser.html }
  36. { }
  37. {******************************************************************************}
  38. unit JwaWinResrc;
  39. {$WEAKPACKAGEUNIT}
  40. {$HPPEMIT ''}
  41. {$HPPEMIT '#include "winresrc.h"'}
  42. {$HPPEMIT ''}
  43. {$I jediapilib.inc}
  44. interface
  45. const
  46. WINVER = $0500;
  47. {$EXTERNALSYM WINVER}
  48. _WIN32_IE = $0501;
  49. {$EXTERNALSYM _WIN32_IE}
  50. _WIN32_WINDOWS = $0410;
  51. {$EXTERNALSYM _WIN32_WINDOWS}
  52. _WIN32_WINNT = $0500;
  53. {$EXTERNALSYM _WIN32_WINNT}
  54. {
  55. #include <winuser.rh>
  56. #include <commctrl.rh>
  57. #include <dde.rh>
  58. #include <winnt.rh>
  59. #include <dlgs.h>
  60. #include <winver.h>
  61. }
  62. implementation
  63. end.