CopyImage method

Pointer<Void> CopyImage(
  1. Pointer<Void> h,
  2. int type,
  3. int cx,
  4. int cy,
  5. int flags,
)

Implementation

ffi.Pointer<ffi.Void> CopyImage(
  ffi.Pointer<ffi.Void> h,
  int type,
  int cx,
  int cy,
  int flags,
) {
  return _CopyImage(
    h,
    type,
    cx,
    cy,
    flags,
  );
}