sysdlh.inc 746 B

123456789101112131415161718192021222324
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 1999-2000 by the Free Pascal development team
  4. Implements OS dependent part for loading of dynamic libraries.
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. type
  12. TLibHandle = THandle;
  13. TOrdinalEntry = word;
  14. const
  15. NilHandle = 0;
  16. // these are for easier crossplatform construction of dll names in dynloading libs.
  17. SharedSuffix = 'DLL';