diff options
author | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2000-10-16 06:04:50 +0000 |
---|---|---|
committer | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2000-10-16 06:04:50 +0000 |
commit | ed62b49141bea6697fbaa7f085af604dbe7b9564 (patch) | |
tree | 24b8fe20a3b2235b303d428731c5d38a5b266ea7 /include/apr_getopt.h | |
parent | f97d8155700af0ef88f7bca5ad088e1a399a75d3 (diff) | |
download | libapr-ed62b49141bea6697fbaa7f085af604dbe7b9564.tar.gz |
Renamed all MODULE_EXPORT symbols to AP_MODULE_DECLARE and all symbols
for CORE_EXPORT to AP_CORE_DECLARE (namespace protecting the wrapper)
and retitled API_EXPORT as AP_DECLARE and APR_EXPORT as APR_DECLARE.
All _VAR_ flavors changes to _DATA to be absolutely clear.
Thank you Greg, for the most obvious suggestion.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60587 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_getopt.h')
-rw-r--r-- | include/apr_getopt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_getopt.h b/include/apr_getopt.h index 57721f3a5..91be72c28 100644 --- a/include/apr_getopt.h +++ b/include/apr_getopt.h @@ -91,7 +91,7 @@ struct apr_getopt_t { * @tip Arguments 2 and 3 are most commonly argc and argv from main(argc, argv) * @deffunc apr_status_t apr_initopt(apr_getopt_t **os, apr_pool_t *cont,int argc, char *const *argv) */ -APR_EXPORT(apr_status_t) apr_initopt(apr_getopt_t **os, apr_pool_t *cont, +APR_DECLARE(apr_status_t) apr_initopt(apr_getopt_t **os, apr_pool_t *cont, int argc, char *const *argv); /** @@ -111,7 +111,7 @@ APR_EXPORT(apr_status_t) apr_initopt(apr_getopt_t **os, apr_pool_t *cont, * </PRE> * @deffunc apr_status_t apr_getopt(apr_getopt_t *os, const char *opts, char *optch, const char **optarg) */ -APR_EXPORT(apr_status_t) apr_getopt(apr_getopt_t *os, const char *opts, +APR_DECLARE(apr_status_t) apr_getopt(apr_getopt_t *os, const char *opts, char *optch, const char **optarg); #endif /* ! APR_GETOPT_H */ |