Source code of Windows XP (NT5)
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.

36 lines
701 B

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1999 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. // Revision History:
  14. //
  15. // Thierry Perraut 04/02/1999
  16. //
  17. //////////////////////////////////////////////////////////////////////////////
  18. #ifndef _IASMDBTOOL_H_
  19. #define _IASMDBTOOL_H_
  20. #if _MSC_VER > 1000
  21. #pragma once
  22. #endif
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. HRESULT IASDumpConfig(/*inout*/ WCHAR **ppDumpString, /*inout*/ ULONG *ulSize);
  27. HRESULT IASRestoreConfig(/*int*/ const WCHAR *pRestoreString);
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif