root/win32/winmain.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. WinMain

#include <windows.h>
#include <stdio.h>

extern int main(int, char**);

int WINAPI
WinMain(HINSTANCE current, HINSTANCE prev, LPSTR cmdline, int showcmd)
{
    return main(0, NULL);
}

/* [previous][next][first][last][top][bottom][index][help] */