mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:33:00 +00:00
Create a branch for cmake bringup.
svn path=/branches/cmake-bringup/; revision=48236
This commit is contained in:
parent
a28e798006
commit
c424146e2c
20602 changed files with 0 additions and 1140137 deletions
125
base/shell/cmd/ver.c
Normal file
125
base/shell/cmd/ver.c
Normal file
|
@ -0,0 +1,125 @@
|
|||
/*
|
||||
* VER.C - ver internal command.
|
||||
*
|
||||
*
|
||||
* History:
|
||||
*
|
||||
* 06/30/98 (Rob Lake)
|
||||
* rewrote ver command to accept switches, now ver alone prints
|
||||
* copyright notice only.
|
||||
*
|
||||
* 27-Jul-1998 (John P Price <linux-guru@gcfl.net>)
|
||||
* added config.h include
|
||||
*
|
||||
* 30-Jul-1998 (John P Price <linux-guru@gcfl.net>)
|
||||
* added text about where to send bug reports and get updates.
|
||||
*
|
||||
* 20-Jan-1999 (Eric Kohl)
|
||||
* Unicode and redirection safe!
|
||||
*
|
||||
* 26-Feb-1999 (Eric Kohl)
|
||||
* New version info and some output changes.
|
||||
*/
|
||||
|
||||
#include <precomp.h>
|
||||
|
||||
|
||||
VOID ShortVersion (VOID)
|
||||
{
|
||||
OSVERSIONINFO VersionInfo;
|
||||
unsigned RosVersionLen;
|
||||
LPTSTR RosVersion;
|
||||
|
||||
ConOutResPrintf(STRING_CMD_SHELLINFO, _T(KERNEL_RELEASE_STR), _T(KERNEL_VERSION_BUILD_STR));
|
||||
VersionInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
|
||||
|
||||
memset(VersionInfo.szCSDVersion, 0, sizeof(VersionInfo.szCSDVersion));
|
||||
if (GetVersionEx(&VersionInfo))
|
||||
{
|
||||
RosVersion = VersionInfo.szCSDVersion + _tcslen(VersionInfo.szCSDVersion) + 1;
|
||||
RosVersionLen = sizeof(VersionInfo.szCSDVersion) / sizeof(VersionInfo.szCSDVersion[0]) -
|
||||
(RosVersion - VersionInfo.szCSDVersion);
|
||||
if (7 <= RosVersionLen && 0 == _tcsnicmp(RosVersion, _T("ReactOS"), 7))
|
||||
{
|
||||
ConOutResPrintf(STRING_VERSION_RUNVER, RosVersion);
|
||||
}
|
||||
}
|
||||
ConOutPuts (_T("\n"));
|
||||
}
|
||||
|
||||
|
||||
#ifdef INCLUDE_CMD_VER
|
||||
|
||||
/*
|
||||
* display shell version info internal command.
|
||||
*
|
||||
*
|
||||
*/
|
||||
INT cmd_ver (LPTSTR param)
|
||||
{
|
||||
INT i;
|
||||
|
||||
nErrorLevel = 0;
|
||||
|
||||
if (_tcsstr (param, _T("/?")) != NULL)
|
||||
{
|
||||
ConOutResPaging(TRUE,STRING_VERSION_HELP1);
|
||||
return 0;
|
||||
}
|
||||
|
||||
ShortVersion();
|
||||
|
||||
/* Basic copyright notice */
|
||||
if (param[0] != _T('\0'))
|
||||
{
|
||||
|
||||
ConOutPuts (_T("Copyright (C) 1994-1998 Tim Norman and others."));
|
||||
ConOutPuts (_T("Copyright (C) 1998-") _T(COPYRIGHT_YEAR) _T(" ReactOS Team"));
|
||||
|
||||
for (i = 0; param[i]; i++)
|
||||
{
|
||||
/* skip spaces */
|
||||
if (param[i] == _T(' '))
|
||||
continue;
|
||||
|
||||
if (param[i] == _T('/'))
|
||||
{
|
||||
/* is this a lone '/' ? */
|
||||
if (param[i + 1] == 0)
|
||||
{
|
||||
error_invalid_switch (_T(' '));
|
||||
return 1;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
if (_totupper (param[i]) == _T('W'))
|
||||
{
|
||||
/* Warranty notice */
|
||||
ConOutResPuts(STRING_VERSION_HELP3);
|
||||
}
|
||||
else if (_totupper (param[i]) == _T('R'))
|
||||
{
|
||||
/* Redistribution notice */
|
||||
ConOutResPuts(STRING_VERSION_HELP4);
|
||||
}
|
||||
else if (_totupper (param[i]) == _T('C'))
|
||||
{
|
||||
/* Developer listing */
|
||||
ConOutResPuts(STRING_VERSION_HELP6);
|
||||
ConOutResPuts(STRING_FREEDOS_DEV);
|
||||
ConOutResPuts(STRING_VERSION_HELP7);
|
||||
ConOutResPuts(STRING_REACTOS_DEV);
|
||||
}
|
||||
else
|
||||
{
|
||||
error_invalid_switch ((TCHAR)_totupper (param[i]));
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
ConOutResPuts(STRING_VERSION_HELP5);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue