mshta: No longer use console / crt API.

As regular GUI apps should.

Signed-off-by: Eric Pouech <epouech@codeweavers.com>
This commit is contained in:
Eric Pouech 2023-11-10 18:08:42 +01:00 committed by Alexandre Julliard
parent 3c878a5572
commit 21222ad7cd

View file

@ -21,9 +21,10 @@
#define WIN32_LEAN_AND_MEAN
#include <stdio.h>
#include <windows.h>
#include "wine/debug.h"
int WINAPI wWinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPWSTR cmdline, int cmdshow)
{
printf("mshta.exe is a stub!\n");
MESSAGE("mshta.exe is a stub!\n");
return 0;
}