Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 8th, 2012  |  syntax: None  |  size: 0.32 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Delphi Type equivalence and Type equality syntax
  2. Type
  3.   AnIntType = Integer;
  4.   AnotherIntType = Type Integer;
  5.        
  6. type TValue = Real;
  7. var
  8.   X: Real;
  9.   Y: TValue;
  10.        
  11. type newTypeName = type KnownType
  12.        
  13. type TValue = type Real;
  14.        
  15. type
  16.   HDC = Pointer;
  17.   HWND = Pointer;
  18.        
  19. type
  20.   HDC = type Pointer;
  21.   HWND = type Pointer;