summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
Diffstat (limited to 'ace')
-rw-r--r--ace/Service_Config.cpp6
-rw-r--r--ace/Service_Config.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/ace/Service_Config.cpp b/ace/Service_Config.cpp
index 34ca86bc6c9..0da87d83656 100644
--- a/ace/Service_Config.cpp
+++ b/ace/Service_Config.cpp
@@ -228,12 +228,12 @@ ACE_Service_Config::parse_args (int argc, ACE_TCHAR *argv[])
ACE_Service_Type *
ACE_Service_Config::create_service_type (const ACE_TCHAR *n,
ACE_Service_Type_Impl *o,
- const ACE_SHLIB_HANDLE handle,
+ ACE_DLL &dll,
int active)
{
ACE_Service_Type *sp = 0;
ACE_NEW_RETURN (sp,
- ACE_Service_Type (n, o, handle, active),
+ ACE_Service_Type (n, o, dll, active),
0);
return sp;
}
@@ -389,7 +389,7 @@ ACE_Service_Config::get_xml_svc_conf (ACE_DLL &xmldll)
0);
void *foo;
- foo = xmldll.symbol (ACE_LIB_TEXT ("_ACEXML_create_XML_Svc_Conf_Object");
+ foo = xmldll.symbol (ACE_LIB_TEXT ("_ACEXML_create_XML_Svc_Conf_Object"));
// Cast the void* to long first.
long tmp = ACE_reinterpret_cast (long, foo);
diff --git a/ace/Service_Config.h b/ace/Service_Config.h
index de136e1feda..a72975ea3ed 100644
--- a/ace/Service_Config.h
+++ b/ace/Service_Config.h
@@ -356,7 +356,7 @@ public:
#if (ACE_USES_CLASSIC_SVC_CONF == 0)
static ACE_Service_Type *create_service_type (const ACE_TCHAR *n,
ACE_Service_Type_Impl *o,
- const ACE_SHLIB_HANDLE handle,
+ ACE_DLL &dll,
int active);
#endif /* ACE_USES_CLASSIC_SVC_CONF == 0 */