From: Eric Pouech epouech@codeweavers.com
As regular GUI apps should.
Signed-off-by: Eric Pouech epouech@codeweavers.com --- programs/mshta/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/programs/mshta/main.c b/programs/mshta/main.c index a0287a7d7cd..0e0a75dfbae 100644 --- a/programs/mshta/main.c +++ b/programs/mshta/main.c @@ -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; }