Create tmain_ex.c

This commit is contained in:
janbodnar 2016-01-31 13:50:47 +01:00
parent 937a293c4a
commit 25ab401d45

20
main/tmain_ex.c Normal file
View File

@ -0,0 +1,20 @@
#define _UNICODE
#define UNICODE
#include <windows.h>
#include <tchar.h>
int _tmain(int argc, TCHAR *argv[]) {
PDWORD cChars = NULL;
HANDLE std = GetStdHandle(STD_OUTPUT_HANDLE);
if (std == INVALID_HANDLE_VALUE) {
_tprintf(L"Cannot retrieve standard output handle\n (%d)",
GetLastError());
}
WriteConsole(std, argv[1], _tcslen(argv[1]), cChars, NULL);
return EXIT_SUCCESS;
}