diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-08-29 06:17:26 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-08-29 06:17:26 +0000 |
commit | 39e383a60f5068ee4315a727e7ec6dd3f512030f (patch) | |
tree | 7d32454708aef5d15a16bf6bb1dacc71eb36e675 /ace/Strategies_T.h | |
parent | 21bc321ef279f6cb024b9410706ca3b7911d8a82 (diff) | |
download | ATCD-39e383a60f5068ee4315a727e7ec6dd3f512030f.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Strategies_T.h')
-rw-r--r-- | ace/Strategies_T.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/ace/Strategies_T.h b/ace/Strategies_T.h index 9ce8614f760..4e8fa0b111e 100644 --- a/ace/Strategies_T.h +++ b/ace/Strategies_T.h @@ -111,13 +111,17 @@ public: ACE_DLL_Strategy (void); // "Do-nothing" constructor. - ACE_DLL_Strategy (const char svc_dll_info[], + ACE_DLL_Strategy (const char dll_name[], + const char factory_function[], + const char svc_name[], ACE_Service_Repository *, ACE_Thread_Manager * = 0); // Initialize the DLL strategy based upon the service's DLL // information contained in the <svc_dll_info> string. - int open (const char svc_dll_info[], + int open (const char dll_name[], + const char factory_function[], + const char svc_name[], ACE_Service_Repository *, ACE_Thread_Manager * = 0); // Initialize the DLL strategy based upon the service's DLL @@ -137,14 +141,14 @@ public: protected: typedef ACE_Creation_Strategy<SVC_HANDLER> inherited; - char shared_library_[MAXPATHLEN]; - // Name of the shared library to dynamically link. + char dll_name_[MAXPATHLEN]; + // Name of the DLL to dynamically link. char factory_function_[MAXPATHLEN]; // Name of the factory function in the shared library to use to // obtain a pointer to the new SVC_HANDLER. - char svc_name[MAXNAMELEN]; + char svc_name_[MAXNAMELEN]; // Name of the service. ACE_Service_Repository *svc_rep_; |