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.

41 lines
889 B

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) Microsoft Corporation
  4. //
  5. // Module Name:
  6. //
  7. // iasmdbtool.h
  8. //
  9. // Abstract:
  10. // Header for the base64 encoding and decoding functions
  11. //
  12. //////////////////////////////////////////////////////////////////////////////
  13. #ifndef _IASMDBTOOL_H_
  14. #define _IASMDBTOOL_H_
  15. #include "datastore2.h"
  16. #if _MSC_VER > 1000
  17. #pragma once
  18. #endif
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. HRESULT IASDumpConfig(
  23. /*inout*/ WCHAR **ppDumpString,
  24. /*inout*/ ULONG *ulSize
  25. );
  26. HRESULT IASRestoreConfig(
  27. /*in*/ const WCHAR *pRestoreString,
  28. /*in*/ IAS_SHOW_TOKEN_LIST configType
  29. );
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33. #endif