wWinMain method

int wWinMain(
  1. Pointer<HINSTANCE__> hInstance,
  2. Pointer<HINSTANCE__> hPrevInstance,
  3. Pointer<Uint16> lpCmdLine,
  4. int nShowCmd,
)

Implementation

int wWinMain(
  ffi.Pointer<HINSTANCE__> hInstance,
  ffi.Pointer<HINSTANCE__> hPrevInstance,
  ffi.Pointer<ffi.Uint16> lpCmdLine,
  int nShowCmd,
) {
  return _wWinMain(
    hInstance,
    hPrevInstance,
    lpCmdLine,
    nShowCmd,
  );
}