QTCaptureInput.inc 515 B

123456789101112131415161718192021222324
  1. { Parsed from QTKit.framework QTCaptureInput.h }
  2. {$ifdef TYPES}
  3. type
  4. QTCaptureInputPtr = ^QTCaptureInput;
  5. {$endif}
  6. {$if ((QTKIT_VERSION_MAX_ALLOWED >= QTKIT_VERSION_7_2)) and ((MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4))}
  7. {$ifdef CLASSES}
  8. type
  9. QTCaptureInput = objcclass external (NSObject)
  10. private
  11. _session: QTCaptureSession;
  12. _reserved1: clong;
  13. _reserved2: clong;
  14. _reserved3: clong;
  15. public
  16. function connections: NSArray; message 'connections';
  17. end;
  18. {$endif}
  19. {$endif}