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.

35 lines
670 B

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) Microsoft Corporation
  4. //
  5. // SYNOPSIS
  6. //
  7. // Declares the function IASVerifyAddress.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #ifndef VERIFYADDRESS_H
  11. #define VERIFYADDRESS_H
  12. #pragma once
  13. #ifndef NAPMMCAPI
  14. #define NAPMMCAPI DECLSPEC_IMPORT
  15. #endif
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. // Displays the verify client dialog and returns the address selected.
  20. NAPMMCAPI
  21. HRESULT
  22. WINAPI
  23. IASVerifyClientAddress(
  24. const wchar_t* address,
  25. BSTR* result
  26. );
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. #endif