123456789101112131415161718192021222324252627282930313233 |
- { Parsed from QTKit.framework QTCaptureSession.h }
- {$ifdef TYPES}
- type
- QTCaptureSessionPtr = ^QTCaptureSession;
- {$endif}
- {$if ((QTKIT_VERSION_MAX_ALLOWED >= QTKIT_VERSION_7_2)) and ((MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4))}
- {$ifdef CLASSES}
- type
- QTCaptureSession = objcclass external (NSObject)
- private
- _internal: QTCaptureSessionInternal;
- _internalState: QTCaptureSessionInternalState;
- _reserved1: clong;
- _reserved2: clong;
- _reserved3: clong;
- public
- function inputs: NSArray; message 'inputs';
- function addInput_error (input: QTCaptureInput; errorPtr: NSErrorPtr): ObjCBOOL; message 'addInput:error:';
- procedure removeInput (input: QTCaptureInput); message 'removeInput:';
- function outputs: NSArray; message 'outputs';
- function addOutput_error (output: QTCaptureOutput; errorPtr: NSErrorPtr): ObjCBOOL; message 'addOutput:error:';
- procedure removeOutput (output: QTCaptureOutput); message 'removeOutput:';
- function isRunning: ObjCBOOL; message 'isRunning';
- procedure startRunning; message 'startRunning';
- procedure stopRunning; message 'stopRunning';
- end;
- {$endif}
- {$endif}
|