2 * Win32 kernel functions
4 * Copyright 1995 Martin von Loewis and Cameron Heide
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34 #include "wine/exception.h"
35 #include "msvcrt/excpt.h"
36 #include "wine/debug.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(win32
);
40 /* filter for page-fault exceptions */
41 static WINE_EXCEPTION_FILTER(page_fault
)
43 if (GetExceptionCode() == EXCEPTION_ACCESS_VIOLATION
)
44 return EXCEPTION_EXECUTE_HANDLER
;
45 return EXCEPTION_CONTINUE_SEARCH
;
48 /***********************************************************************
49 * GetComputerNameA (KERNEL32.@)
51 BOOL WINAPI
GetComputerNameA(LPSTR name
,LPDWORD size
)
53 /* At least Win95OSR2 survives if size is not a pointer (NT crashes though) */
58 TRACE("*size = %ld\n", *size
);
59 ret
= (gethostname(host_name
, sizeof(host_name
)) != -1);
62 lstrcpynA(name
, host_name
, *size
);
66 WARN("gethostname: %s\n", strerror(errno
));
70 SetLastError( ERROR_INVALID_PARAMETER
);
75 TRACE("returning (%ld) %s\n", *size
, debugstr_a(name
));
79 /***********************************************************************
80 * GetComputerNameW (KERNEL32.@)
82 BOOL WINAPI
GetComputerNameW(LPWSTR name
,LPDWORD size
)
84 LPSTR nameA
= (LPSTR
)HeapAlloc( GetProcessHeap(), 0, *size
);
85 BOOL ret
= GetComputerNameA(nameA
,size
);
86 /* FIXME: should set *size in Unicode chars */
87 if (ret
) MultiByteToWideChar( CP_ACP
, 0, nameA
, -1, name
, *size
+1 );
88 HeapFree( GetProcessHeap(), 0, nameA
);
92 /***********************************************************************
93 * GetComputerNameExA (KERNEL32.@)
95 BOOL WINAPI
GetComputerNameExA(COMPUTER_NAME_FORMAT type
, LPSTR name
, LPDWORD size
)
97 FIXME("(%d, %p, %p) semi-stub!\n", type
, name
, size
);
98 return GetComputerNameA(name
, size
);
101 /***********************************************************************
102 * GetComputerNameExW (KERNEL32.@)
104 BOOL WINAPI
GetComputerNameExW(COMPUTER_NAME_FORMAT type
, LPWSTR name
, LPDWORD size
)
106 FIXME("(%d, %p, %p) semi-stub!\n", type
, name
, size
);
107 return GetComputerNameW(name
, size
);