Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 459 of file compname.c.
Referenced by SetComputerNameExA(), SetComputerNameW(), and WriteComputerSettings().
{ if (!IsValidComputerName(NameType, lpBuffer)) { SetLastError(ERROR_INVALID_PARAMETER); return FALSE; } switch( NameType ) { case ComputerNamePhysicalDnsDomain: return SetComputerNameToRegistry(L"\\Registry\\Machine\\System\\CurrentControlSet" L"\\Services\\Tcpip\\Parameters", L"Domain", lpBuffer); case ComputerNamePhysicalDnsHostname: return SetComputerNameToRegistry(L"\\Registry\\Machine\\System\\CurrentControlSet" L"\\Services\\Tcpip\\Parameters", L"Hostname", lpBuffer); case ComputerNamePhysicalNetBIOS: return SetComputerNameToRegistry(L"\\Registry\\Machine\\System\\CurrentControlSet" L"\\Control\\ComputerName\\ComputerName", L"ComputerName", lpBuffer); default: SetLastError (ERROR_INVALID_PARAMETER); return FALSE; } }