mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 05:22:56 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
74
base/applications/cmdutils/hostname/hostname.c
Normal file
74
base/applications/cmdutils/hostname/hostname.c
Normal file
|
@ -0,0 +1,74 @@
|
|||
/*
|
||||
* ReactOS Win32 Applications
|
||||
* Copyright (C) 2005 ReactOS Team
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
/*
|
||||
* COPYRIGHT : See COPYING in the top level directory
|
||||
* PROJECT : ReactOS/Win32 get host name
|
||||
* FILE : subsys/system/hostname/hostname.c
|
||||
* PROGRAMMER: Emanuele Aliberti (ea@reactos.com)
|
||||
*/
|
||||
|
||||
#include <conio.h>
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <winuser.h>
|
||||
|
||||
#include "resource.h"
|
||||
|
||||
int wmain(int argc, WCHAR* argv[])
|
||||
{
|
||||
WCHAR Msg[100];
|
||||
|
||||
if (1 == argc)
|
||||
{
|
||||
WCHAR ComputerName[MAX_COMPUTERNAME_LENGTH + 1] = L"";
|
||||
DWORD ComputerNameSize = sizeof(ComputerName) / sizeof(ComputerName[0]);
|
||||
|
||||
if (!GetComputerName(ComputerName, &ComputerNameSize))
|
||||
{
|
||||
/* Fail in case of error */
|
||||
LoadStringW(GetModuleHandle(NULL), IDS_ERROR, Msg, 100);
|
||||
_cwprintf(L"%s %lu.\n", Msg, GetLastError());
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Print out the computer's name */
|
||||
_cwprintf(L"%s\n", ComputerName);
|
||||
}
|
||||
else
|
||||
{
|
||||
if ((wcsicmp(argv[1], L"-s") == 0) || (wcsicmp(argv[1], L"/s") == 0))
|
||||
{
|
||||
/* The program doesn't allow the user to set the computer's name */
|
||||
LoadStringW(GetModuleHandle(NULL), IDS_NOSET, Msg, 100);
|
||||
_cwprintf(L"%s\n", Msg);
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Let the user know what the program does */
|
||||
LoadStringW(GetModuleHandle(NULL), IDS_USAGE, Msg, 100);
|
||||
_cwprintf(L"\n%s\n\n", Msg);
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* EOF */
|
Loading…
Add table
Add a link
Reference in a new issue