summaryrefslogtreecommitdiff
path: root/include/apr_getopt.h
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-10-16 06:04:50 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-10-16 06:04:50 +0000
commit81912b37409be0387e10346b84749ffdabcd4046 (patch)
tree24b8fe20a3b2235b303d428731c5d38a5b266ea7 /include/apr_getopt.h
parenta92d4bd076b126c4d64ebeee40692b4b2d56a128 (diff)
downloadapr-81912b37409be0387e10346b84749ffdabcd4046.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: https://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.h4
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 */