Sends a custom command to the deck. A custom command operation cannot occur if there is an export-to-tape, capture or a custom command operation in progress. The supplied custom command must conform to the Sony 9 Pin protocol and must not include the checksum byte. It will be generated by this interface and added to the command.
Syntax
Sub DeckSendCommand_I( _
ByVal As Integer, _
ByRef As Byte, _
ByRef As Integer, _
ByVal As IntPtr, _
ByVal As Integer, _
ByRef As eMBMDDeckControlError _
)
void DeckSendCommand_I(
int ,
ref byte ,
out int ,
out IntPtr ,
int ,
out eMBMDDeckControlError
)
procedure DeckSendCommand_I(
: Integer;
var : Byte;
Out : Integer;
Out : IntPtr;
: Integer;
Out : eMBMDDeckControlError
);
void DeckSendCommand_I(
int ,
ref byte ,
[PARAMFLAG::Out] int ,
[PARAMFLAG::Out] IntPtr ,
int ,
[PARAMFLAG::Out] eMBMDDeckControlError
)
Parameters
- _lInBufferSize
- the size of the buffer containing the command packet to transmit
- _pInBuffer
- the buffer containing the command packet to transmit
- _pOutDataSize
- the size of the response data
- _ppOutBuffer
- the buffer to contain the response packet
- outBufferSize
- the size of the buffer that will contain the response packet
- _pError
- error code
See Also