2
0

sysosh.inc 756 B

12345678910111213141516171819202122232425262728
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2017 by Free Pascal development team
  4. OS specific headers
  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. {Platform specific information}
  12. type
  13. {$ifdef CPU64}
  14. THandle = Int64;
  15. {$else CPU64}
  16. THandle = Longint;
  17. {$endif CPU64}
  18. TThreadID = THandle;
  19. PRTLCriticalSection = ^TRTLCriticalSection;
  20. TRTLCriticalSection = record
  21. Locked: boolean
  22. end;