Ruby 4.0.5p0 (2026-05-20 revision 64336ffd0ee9e1f4c05891695a3d7b49cb709721)
winmain.c
1#include <windows.h>
2#include <stdio.h>
3
4extern int wmain(int, WCHAR**);
5
6int WINAPI
7WinMain(HINSTANCE current, HINSTANCE prev, LPSTR cmdline, int showcmd)
8{
9 return wmain(0, NULL);
10}