summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-01-19 07:04:35 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-01-19 07:04:35 +0000
commit222eb751877f2a35eddaaf6990af87dd84c1ab25 (patch)
tree0cc927dd32ddf0dc7d143d8ad73c4c14664faa49 /include
parent902134ea04eb2cd97ee7ab340895744d9353ce3e (diff)
downloadlibapr-222eb751877f2a35eddaaf6990af87dd84c1ab25.tar.gz
The big change. This is part 3 of the apr-util symbols rename, please
see the first commit of srclib/apr-util/include (cvs apr-util/include) for the quick glance at symbols changed. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61077 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr.h.in2
-rw-r--r--include/apr.hw10
2 files changed, 8 insertions, 4 deletions
diff --git a/include/apr.h.in b/include/apr.h.in
index d047bbe81..b2660d9ee 100644
--- a/include/apr.h.in
+++ b/include/apr.h.in
@@ -135,6 +135,8 @@
/* Typedefs that APR needs. */
+typedef unsigned char apr_byte_t;
+
typedef @short_value@ apr_int16_t;
typedef unsigned @short_value@ apr_uint16_t;
diff --git a/include/apr.hw b/include/apr.hw
index 111bbc90e..21727efef 100644
--- a/include/apr.hw
+++ b/include/apr.hw
@@ -199,11 +199,13 @@
/* Typedefs that APR needs. */
-typedef short apr_int16_t;
-typedef unsigned short apr_uint16_t;
+typedef unsigned char apr_byte_t;
+
+typedef short apr_int16_t;
+typedef unsigned short apr_uint16_t;
-typedef int apr_int32_t;
-typedef unsigned int apr_uint32_t;
+typedef int apr_int32_t;
+typedef unsigned int apr_uint32_t;
typedef __int64 apr_int64_t;
typedef unsigned __int64 apr_uint64_t;