Ruby 3.4.6p54 (2025-09-16 revision dbd83256b1cec76c69756ecb8758b9e1079833de)
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}