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) 1997-2001 Microsoft Corporation, All Rights Reserved
//
// ComputerAPI.h
//
//***************************************************************************
#if _MSC_VER > 1000
#pragma once
#endif
#ifndef __Computer_API__
#define __Computer_API__
#ifndef _WINBASE_
#include <winbase.h>
#endif _WINBASE_
BOOL ProviderGetComputerName(LPWSTR lpwcsBuffer, LPDWORD nSize); BOOL ProviderGetComputerNameEx(COMPUTER_NAME_FORMAT NameType, LPWSTR lpwcsBuffer, LPDWORD nSize);
#endif __Computer_API__
|