Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*++
Copyright (c) 1990 Microsoft Corporation
Module Name:
COMPNAME.H
Abstract:
Contains the common data structures for the Get/SetComputerName API
Author:
Dan Hinsley (DanHi) 16-Apr-1992
Revision History:
--*/
#define COMPUTERNAME_ROOT \
L"\\Registry\\Machine\\System\\Current_Control_Set\\Services\\ComputerName"
#define NON_VOLATILE_COMPUTERNAME_NODE \
L"\\Registry\\Machine\\System\\Current_Control_Set\\Services\\ComputerName\\ComputerName"
#define VOLATILE_COMPUTERNAME L"ActiveComputerName"
#define NON_VOLATILE_COMPUTERNAME L"ComputerName"
#define COMPUTERNAME_VALUE_NAME L"ComputerName"
#define CLASS_STRING L"Network ComputerName"
|