A_CreatePort method

int A_CreatePort(
  1. int nPortType,
  2. int nPort,
  3. String filename
)

Implementation

int A_CreatePort(
  int nPortType,
  int nPort,
  String filename,
) {
  return _A_CreatePort(
    nPortType,
    nPort,
    filename.toNativeUtf8().cast<ffi.Int8>(),
  );
}