jwawinresrc.pas 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. // $Id: JwaWinResrc.pas,v 1.4 2004/12/08 08:18:44 marquardt Exp $
  39. unit JwaWinResrc;
  40. {$WEAKPACKAGEUNIT}
  41. {$HPPEMIT ''}
  42. {$HPPEMIT '#include "winresrc.h"'}
  43. {$HPPEMIT ''}
  44. {$I jediapilib.inc}
  45. interface
  46. const
  47. WINVER = $0500;
  48. {$EXTERNALSYM WINVER}
  49. _WIN32_IE = $0501;
  50. {$EXTERNALSYM _WIN32_IE}
  51. _WIN32_WINDOWS = $0410;
  52. {$EXTERNALSYM _WIN32_WINDOWS}
  53. _WIN32_WINNT = $0500;
  54. {$EXTERNALSYM _WIN32_WINNT}
  55. {
  56. #include <winuser.rh>
  57. #include <commctrl.rh>
  58. #include <dde.rh>
  59. #include <winnt.rh>
  60. #include <dlgs.h>
  61. #include <winver.h>
  62. }
  63. implementation
  64. end.