QTCaptureDeviceInput.inc 748 B

1234567891011121314151617181920212223242526
  1. { Parsed from QTKit.framework QTCaptureDeviceInput.h }
  2. {$ifdef TYPES}
  3. type
  4. QTCaptureDeviceInputPtr = ^QTCaptureDeviceInput;
  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. QTCaptureDeviceInput = objcclass external (QTCaptureInput)
  10. private
  11. _internal: QTCaptureDeviceInputInternal;
  12. _reserved4: clong;
  13. _reserved5: clong;
  14. _reserved6: clong;
  15. public
  16. class function deviceInputWithDevice (device: QTCaptureDevice): id; message 'deviceInputWithDevice:';
  17. function initWithDevice (device: QTCaptureDevice): id; message 'initWithDevice:';
  18. function device: QTCaptureDevice; message 'device';
  19. end;
  20. {$endif}
  21. {$endif}