зеркало из https://github.com/github/ruby.git
17 строки
280 B
C
17 строки
280 B
C
|
#include <windows.h>
|
||
|
#include <stdio.h>
|
||
|
#include "wince.h"
|
||
|
|
||
|
extern int main(int, char**, char**);
|
||
|
|
||
|
int WINAPI
|
||
|
WinMain(HINSTANCE current, HINSTANCE prev, LPWSTR wcmd, int showcmd)
|
||
|
{
|
||
|
/* wchar_t -> char */
|
||
|
wce_SetCommandLine(wcmd);
|
||
|
|
||
|
/* main. */
|
||
|
return main(0, NULL, NULL);
|
||
|
}
|
||
|
|