mirror of https://github.com/tongzx/nt5src
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.
30 lines
842 B
30 lines
842 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 2001
|
|
//
|
|
// File: CompName.h
|
|
//
|
|
// Contents: Definitions for the computer name management code.
|
|
//
|
|
// History: 20-April-2001 EricB Created
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _COMPNAME_H_
|
|
#define _COMPNAME_H_
|
|
|
|
//+----------------------------------------------------------------------------
|
|
//
|
|
// Function: NetDomComputerNames
|
|
//
|
|
// Synopsis: Entry point for the computer name command.
|
|
//
|
|
// Arguments: [rgNetDomArgs] - The command line argument array.
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
DWORD
|
|
NetDomComputerNames(ARG_RECORD * rgNetDomArgs);
|
|
|
|
|
|
#endif // _COMPNAME_H_
|