diff options
Diffstat (limited to 'include/ap_provider.h')
-rw-r--r-- | include/ap_provider.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/include/ap_provider.h b/include/ap_provider.h index c05da554c5..d4ee78eb2c 100644 --- a/include/ap_provider.h +++ b/include/ap_provider.h @@ -14,16 +14,21 @@ * limitations under the License. */ +/** + * @file ap_provider.h + * @brief Apache Provider API + * + * @defgroup APACHE_CORE_PROVIDER Provider API + * @ingroup APACHE_CORE + * @{ + */ + #ifndef AP_PROVIDER_H #define AP_PROVIDER_H #include "ap_config.h" /** - * @package Provider API - */ - -/** * This function is used to register a provider with the global * provider pool. * @param pool The pool to create any storage from @@ -52,3 +57,4 @@ AP_DECLARE(void *) ap_lookup_provider(const char *provider_group, const char *provider_version); #endif +/** @} */ |