WinExec method

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

Implementation

int WinExec(
  ffi.Pointer<ffi.Int8> lpCmdLine,
  int uCmdShow,
) {
  return _WinExec(
    lpCmdLine,
    uCmdShow,
  );
}