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.

23 lines
614 B

  1. //***************************************************************************
  2. //
  3. // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
  4. //
  5. // ComputerAPI.h
  6. //
  7. //***************************************************************************
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif
  11. #ifndef __Computer_API__
  12. #define __Computer_API__
  13. #ifndef _WINBASE_
  14. #include <winbase.h>
  15. #endif _WINBASE_
  16. BOOL ProviderGetComputerName(LPWSTR lpwcsBuffer, LPDWORD nSize);
  17. BOOL ProviderGetComputerNameEx(COMPUTER_NAME_FORMAT NameType, LPWSTR lpwcsBuffer, LPDWORD nSize);
  18. #endif __Computer_API__