/* * Win32 kernel functions * * Copyright 1995 Martin von Loewis and Cameron Heide * 1999 Peter Ganten */ #include #include #include #include "winerror.h" #include "wine/winestring.h" #include "wine/exception.h" #include "heap.h" #include "task.h" #include "debugtools.h" DEFAULT_DEBUG_CHANNEL(win32); /* filter for page-fault exceptions */ static WINE_EXCEPTION_FILTER(page_fault) { if (GetExceptionCode() == EXCEPTION_ACCESS_VIOLATION) return EXCEPTION_EXECUTE_HANDLER; return EXCEPTION_CONTINUE_SEARCH; } /*********************************************************************** * GetComputerNameA (KERNEL32.165) */ BOOL WINAPI GetComputerNameA(LPSTR name,LPDWORD size) { /* At least Win95OSR2 survives if size is not a pointer (NT crashes though) */ BOOL ret; __TRY { ret = (-1!=gethostname(name,*size)); if (ret) *size = strlen(name); } __EXCEPT(page_fault) { SetLastError( ERROR_INVALID_PARAMETER ); return FALSE; } __ENDTRY return ret; } /*********************************************************************** * GetComputerNameW (KERNEL32.166) */ BOOL WINAPI GetComputerNameW(LPWSTR name,LPDWORD size) { LPSTR nameA = (LPSTR)HeapAlloc( GetProcessHeap(), 0, *size); BOOL ret = GetComputerNameA(nameA,size); if (ret) lstrcpynAtoW(name,nameA,*size+1); HeapFree( GetProcessHeap(), 0, nameA ); return ret; }