A_Print_Form method

int A_Print_Form(
  1. int width,
  2. int height,
  3. int copies,
  4. int amount,
  5. Pointer<Char> form_name,
)

Implementation

int A_Print_Form(
  int width,
  int height,
  int copies,
  int amount,
  ffi.Pointer<ffi.Char> form_name,
) {
  return _A_Print_Form(
    width,
    height,
    copies,
    amount,
    form_name,
  );
}