winver.exe by Christoph.AT.ApiViewer.de
[reactos.git] / reactos / subsys / system / winver / winver.c
1 #include <windows.h>
2 #include <tchar.h>
3
4 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) {
5 static const WCHAR szROS[] = { 'R','e','a','c','t','O','S','\n',0 };
6 ShellAbout(0, szROS, 0, 0);
7 return 1;
8 }