CreateVideoMessageFromFullPath method

Pointer<Char> CreateVideoMessageFromFullPath(
  1. Pointer<Char> operationID,
  2. Pointer<Char> videoFullPath,
  3. Pointer<Char> videoType,
  4. int duration,
  5. Pointer<Char> snapshotFullPath,
)

Implementation

ffi.Pointer<ffi.Char> CreateVideoMessageFromFullPath(
  ffi.Pointer<ffi.Char> operationID,
  ffi.Pointer<ffi.Char> videoFullPath,
  ffi.Pointer<ffi.Char> videoType,
  int duration,
  ffi.Pointer<ffi.Char> snapshotFullPath,
) {
  return _CreateVideoMessageFromFullPath(
    operationID,
    videoFullPath,
    videoType,
    duration,
    snapshotFullPath,
  );
}