- Sync with trunk r58248 to bring the latest changes from Amine (headers) and others...
[reactos.git] / base / applications / cmdutils / hostname / hostname.c
1 /*
2 * ReactOS Win32 Applications
3 * Copyright (C) 2005 ReactOS Team
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 /* $Id$
20 *
21 * COPYRIGHT : See COPYING in the top level directory
22 * PROJECT : ReactOS/Win32 get host name
23 * FILE : subsys/system/hostname/hostname.c
24 * PROGRAMMER: Emanuele Aliberti (ea@reactos.com)
25 */
26
27 #include <stdio.h>
28 #include <stdlib.h>
29 //#include <string.h>
30
31 #include <windef.h>
32 #include <winbase.h>
33
34 int main (int argc, char ** argv)
35 {
36 if (1 == argc)
37 {
38 TCHAR ComputerName [MAX_COMPUTERNAME_LENGTH + 1];
39 DWORD ComputerNameSize = sizeof ComputerName / sizeof ComputerName[0];
40
41 ZeroMemory (ComputerName, sizeof ComputerName );
42 if (GetComputerName(ComputerName, & ComputerNameSize))
43 {
44 printf ("%s\n", ComputerName);
45 return EXIT_SUCCESS;
46 }
47 fprintf (stderr, "%s: Win32 error %ld.\n",
48 argv[0], GetLastError());
49 return EXIT_FAILURE;
50 }else{
51 if (0 == strcmp(argv[1],"-s"))
52 {
53 fprintf(stderr,"%s: -s not supported.\n",argv[0]);
54 return EXIT_FAILURE;
55 }else{
56 printf("Print the current host's name.\n\nhostname\n");
57 }
58 }
59 return EXIT_SUCCESS;
60 }
61 /* EOF */