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
38 lines
698 B
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) Microsoft Corporation
|
|
//
|
|
// SYNOPSIS
|
|
//
|
|
// Declares functions for loading and storing the database configuration.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef DBCONFIG_H
|
|
#define DBCONFIG_H
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
HRESULT
|
|
WINAPI
|
|
IASLoadDatabaseConfig(
|
|
PCWSTR server,
|
|
BSTR* initString,
|
|
BSTR* dataSourceName
|
|
);
|
|
|
|
HRESULT
|
|
WINAPI
|
|
IASStoreDatabaseConfig(
|
|
PCWSTR server,
|
|
PCWSTR initString,
|
|
PCWSTR dataSourceName
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // DBCONFIG_H
|