summaryrefslogtreecommitdiff
path: root/ace/DLL.cpp
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-17 03:25:32 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-17 03:25:32 +0000
commitd6de07b861df0734300093b36793abc76665ded2 (patch)
tree954b8d28e329f0a736432dee90b61647b536c4a1 /ace/DLL.cpp
parent3ac9a964c3a6e533089a89180328f2d533d100e4 (diff)
downloadATCD-d6de07b861df0734300093b36793abc76665ded2.tar.gz
Wed Jun 16 22:03:29 1999 Irfan Pyarali <irfan@cs.wustl.edu>
Diffstat (limited to 'ace/DLL.cpp')
-rw-r--r--ace/DLL.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/DLL.cpp b/ace/DLL.cpp
index 44e935f62b2..7d84ff9705f 100644
--- a/ace/DLL.cpp
+++ b/ace/DLL.cpp
@@ -18,7 +18,7 @@ ACE_DLL::ACE_DLL (int close_on_destruction)
// If the library name and the opening mode are specified than on
// object creation the library is implicitly opened.
-ACE_DLL::ACE_DLL (ACE_DL_TYPE dll_name,
+ACE_DLL::ACE_DLL (const char *dll_name,
int open_mode,
int close_on_destruction)
: handle_ (ACE_OS::dlopen (dll_name, open_mode)),
@@ -52,7 +52,7 @@ ACE_DLL::~ACE_DLL (void)
// relocation processing of any other object.
int
-ACE_DLL::open (ACE_DL_TYPE dll_filename,
+ACE_DLL::open (const char *dll_filename,
int open_mode,
int close_on_destruction)
{
@@ -88,7 +88,7 @@ ACE_DLL::open (ACE_DL_TYPE dll_filename,
// The symbol refernce of the name specified is obtained.
void *
-ACE_DLL::symbol (ACE_DL_TYPE sym_name)
+ACE_DLL::symbol (const char *sym_name)
{
return ACE_OS::dlsym (this->handle_, sym_name);
}