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.

38 lines
698 B

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) Microsoft Corporation
  4. //
  5. // SYNOPSIS
  6. //
  7. // Declares functions for loading and storing the database configuration.
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #ifndef DBCONFIG_H
  11. #define DBCONFIG_H
  12. #pragma once
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. HRESULT
  17. WINAPI
  18. IASLoadDatabaseConfig(
  19. PCWSTR server,
  20. BSTR* initString,
  21. BSTR* dataSourceName
  22. );
  23. HRESULT
  24. WINAPI
  25. IASStoreDatabaseConfig(
  26. PCWSTR server,
  27. PCWSTR initString,
  28. PCWSTR dataSourceName
  29. );
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33. #endif // DBCONFIG_H