CreateVideoMessage method

Pointer<Char> CreateVideoMessage(
  1. Pointer<Char> operationID,
  2. Pointer<Char> videoPath,
  3. Pointer<Char> videoType,
  4. int duration,
  5. Pointer<Char> snapshotPath,
)

Implementation

ffi.Pointer<ffi.Char> CreateVideoMessage(
  ffi.Pointer<ffi.Char> operationID,
  ffi.Pointer<ffi.Char> videoPath,
  ffi.Pointer<ffi.Char> videoType,
  int duration,
  ffi.Pointer<ffi.Char> snapshotPath,
) {
  return _CreateVideoMessage(
    operationID,
    videoPath,
    videoType,
    duration,
    snapshotPath,
  );
}