aliasctp.inc 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 2004 by Marco van de Voort
  5. Member of the Free Pascal development team
  6. Aliases for basic types for C interfacing, for reloading them
  7. in other units from unit unixtype in a typesafe way.
  8. See the file COPYING.FPC, included in this distribution,
  9. for details about the copyright.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. **********************************************************************}
  14. Type
  15. cInt8 = UnixType.cInt8;
  16. cUInt8 = UnixType.cUInt8;
  17. cUInt16 = UnixType.cUInt16;
  18. cInt16 = UnixType.cInt16;
  19. cInt32 = UnixType.cInt32;
  20. cUInt32 = UnixType.cUInt32;
  21. cInt64 = UnixType.cInt64;
  22. cUInt64 = UnixType.cUInt64;
  23. cuchar = UnixType.cuchar;
  24. cInt = UnixType.cInt;
  25. cUInt = UnixType.cUInt;
  26. cLong = UnixType.cLong;
  27. cuLong = UnixType.cuLong;
  28. cshort = UnixType.cshort;
  29. cushort = UnixType.cushort;
  30. pcInt = UnixType.pcInt;
  31. pcUInt = UnixType.pcUInt;
  32. pcLong = UnixType.pcLong;
  33. pculong = UnixType.pculong;
  34. pcshort = UnixType.pcshort;
  35. pcushort= UnixType.pcushort;
  36. {
  37. $Log$
  38. Revision 1.1 2004-03-04 22:15:16 marco
  39. * UnixType changes. Please report problems to me.
  40. }