WinExec method

int WinExec(
  1. Pointer<Int8> lpCmdLine,
  2. int uCmdShow
)

Implementation

int WinExec(
  ffi.Pointer<ffi.Int8> lpCmdLine,
  int uCmdShow,
) {
  return (_WinExec ??=
      _dylib.lookupFunction<_c_WinExec, _dart_WinExec>('WinExec'))(
    lpCmdLine,
    uCmdShow,
  );
}