provider.c revision 2af7ecf8c1589908aac793c154942d3cb3f6e492
/* Copyright 2002-2004 Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "apr_pools.h"
#include "apr_hash.h"
#include "ap_provider.h"
{
return APR_SUCCESS;
}
const char *provider_group,
const char *provider_name,
const char *provider_version,
const void *provider)
{
if (global_providers == NULL) {
}
if (!provider_group_hash) {
}
if (!provider_version_hash) {
}
/* just set it. no biggy if it was there before. */
provider);
return APR_SUCCESS;
}
const char *provider_name,
const char *provider_version)
{
if (global_providers == NULL) {
return NULL;
}
if (provider_group_hash == NULL) {
return NULL;
}
if (provider_name_hash == NULL) {
return NULL;
}
}