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.
23 lines
614 B
23 lines
614 B
//***************************************************************************
|
|
//
|
|
// 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__
|