Create tmain_ex.c

add-license-1
janbodnar 9 years ago
parent 937a293c4a
commit 25ab401d45
  1. 20
      main/tmain_ex.c

@ -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;
}
Loading…
Cancel
Save