A_Get_Graphic_ColorBMPEx method

int A_Get_Graphic_ColorBMPEx(
  1. int x,
  2. int y,
  3. int nWidth,
  4. int nHeight,
  5. int rotate,
  6. int mem_mode,
  7. int format,
  8. String id_name,
  9. String filename,
)

Implementation

int A_Get_Graphic_ColorBMPEx(
  int x,
  int y,
  int nWidth,
  int nHeight,
  int rotate,
  int mem_mode,
  int format,
  String id_name,
  String filename,
) {
  return _A_Get_Graphic_ColorBMPEx(
    x,
    y,
    nWidth,
    nHeight,
    rotate,
    mem_mode,
    format,
    id_name.toNativeUtf8().cast<ffi.Int8>(),
    filename.toNativeUtf8().cast<ffi.Int8>(),
  );
}