summaryrefslogtreecommitdiff
path: root/include/apr_sha1.h
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2000-05-27 22:28:03 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2000-05-27 22:28:03 +0000
commitec3df12ce2286578645386f025ae1e7c7836c91e (patch)
tree7128559d7f4596ae2bef5ea1e967269eba3f52a8 /include/apr_sha1.h
parentd7af515fb887055d92898ab280e13db95b1851f9 (diff)
downloadlibapr-util-ec3df12ce2286578645386f025ae1e7c7836c91e.tar.gz
PR:
Obtained from: Submitted by: Reviewed by: Reverse out AP_EXPORT symbols, restore to API_EXPORT. 2nd patch will remove linkage argument to DECLARE/IMPLEMENT_HOOKS. 3rd patch will remove ap.dsp from the project, and treat these three modules as part of the core build under win32. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@57807 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_sha1.h')
-rw-r--r--include/apr_sha1.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/apr_sha1.h b/include/apr_sha1.h
index ea737425..63eb0918 100644
--- a/include/apr_sha1.h
+++ b/include/apr_sha1.h
@@ -83,14 +83,14 @@ typedef struct {
int local; /* unprocessed amount in data */
} AP_SHA1_CTX;
-AP_EXPORT(void) ap_sha1_base64(const char *clear, int len, char *out);
-AP_EXPORT(void) ap_SHA1Init(AP_SHA1_CTX *context);
-AP_EXPORT(void) ap_SHA1Update(AP_SHA1_CTX *context, const char *input,
+API_EXPORT(void) ap_sha1_base64(const char *clear, int len, char *out);
+API_EXPORT(void) ap_SHA1Init(AP_SHA1_CTX *context);
+API_EXPORT(void) ap_SHA1Update(AP_SHA1_CTX *context, const char *input,
unsigned int inputLen);
-AP_EXPORT(void) ap_SHA1Update_binary(AP_SHA1_CTX *context,
+API_EXPORT(void) ap_SHA1Update_binary(AP_SHA1_CTX *context,
const unsigned char *input,
unsigned int inputLen);
-AP_EXPORT(void) ap_SHA1Final(unsigned char digest[SHA_DIGESTSIZE],
+API_EXPORT(void) ap_SHA1Final(unsigned char digest[SHA_DIGESTSIZE],
AP_SHA1_CTX *context);
#ifdef __cplusplus