From ec3df12ce2286578645386f025ae1e7c7836c91e Mon Sep 17 00:00:00 2001 From: wrowe Date: Sat, 27 May 2000 22:28:03 +0000 Subject: 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 --- include/apr_sha1.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include/apr_sha1.h') 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 -- cgit v1.2.1