fpintres.pp 790 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2008 by Giulio Bernardi
  4. Internal resource support
  5. !!!NEVER USE THIS UNIT DIRECTLY!!!
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. unit fpintres;
  13. interface
  14. implementation
  15. {$ifdef FPC_HAS_WINLIKERESOURCES}
  16. {$ifdef WINDOWS}
  17. {$include winres.inc}
  18. {$else}
  19. {$include intres.inc}
  20. {$endif}
  21. initialization
  22. SetResourceManager(InternalResourceManager);
  23. {$endif}
  24. end.