summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Reid <dreid@apache.org>2000-03-28 22:56:07 +0000
committerDavid Reid <dreid@apache.org>2000-03-28 22:56:07 +0000
commitf1bb8286e37e59da329ce9d1c22ac7dabb964e36 (patch)
tree1db810e5fbec1fdc2e5d5d0a6316af22055a9957 /include
parent9521cddb9871688139fce23e260fd2c673deec5e (diff)
downloadapr-f1bb8286e37e59da329ce9d1c22ac7dabb964e36.tar.gz
More tidy up for the dso functions. Somehow missed these in my previous
change. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59745 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_dso.h3
-rw-r--r--include/arch/beos/dso.h4
-rw-r--r--include/arch/os2/dso.h2
3 files changed, 5 insertions, 4 deletions
diff --git a/include/apr_dso.h b/include/apr_dso.h
index e2de5e679..463e3453a 100644
--- a/include/apr_dso.h
+++ b/include/apr_dso.h
@@ -1,4 +1,5 @@
-/* ===================================================================+ * Copyright (c) 2000 The Apache Software Foundation. All rights reserved.
+/* ===================================================================
+ * Copyright (c) 2000 The Apache Software Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff --git a/include/arch/beos/dso.h b/include/arch/beos/dso.h
index e82564f1f..c5e4fd21c 100644
--- a/include/arch/beos/dso.h
+++ b/include/arch/beos/dso.h
@@ -64,9 +64,9 @@
#include "apr_dso.h"
#include <kernel/image.h>
-struct ap_dso_handle_st {
+struct dso_handle_t {
image_id handle; /* Handle to the DSO loaded */
ap_context_t *cont;
};
-#endif \ No newline at end of file
+#endif
diff --git a/include/arch/os2/dso.h b/include/arch/os2/dso.h
index 44771f577..44e9523d7 100644
--- a/include/arch/os2/dso.h
+++ b/include/arch/os2/dso.h
@@ -65,7 +65,7 @@
#include "apr_pools.h"
#include "apr_dso.h"
-struct ap_dso_handle_st {
+struct dso_handle_t {
HMODULE handle; /* Handle to the DSO loaded */
ap_context_t *cont; /* Context for returning error strings */
};