diff options
author | Steve Huston <shuston@riverace.com> | 2001-05-10 22:48:11 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2001-05-10 22:48:11 +0000 |
commit | b28f864cfb00f841d454b368f31c41d7fbf5632d (patch) | |
tree | 02a459c70e19ca4f48a3497b665af2b5e8083c81 /ace/Parse_Node.h | |
parent | 55700aef8fd1cab1e33ec6b8ce83e7c7230395a2 (diff) | |
download | ATCD-b28f864cfb00f841d454b368f31c41d7fbf5632d.tar.gz |
ChangeLogTag:Thu May 10 18:37:41 2001 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'ace/Parse_Node.h')
-rw-r--r-- | ace/Parse_Node.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/Parse_Node.h b/ace/Parse_Node.h index 718cb3185d4..6df9def1915 100644 --- a/ace/Parse_Node.h +++ b/ace/Parse_Node.h @@ -16,6 +16,7 @@ #include "ace/pre.h" #include "ace/Service_Types.h" +#include "ace/DLL.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once @@ -199,8 +200,7 @@ public: ACE_Location_Node (void); virtual void *symbol (ACE_Service_Object_Exterminator * = 0) = 0; virtual void set_symbol (void *h); - ACE_SHLIB_HANDLE handle (void) const; - void handle (const ACE_SHLIB_HANDLE h); + ACE_SHLIB_HANDLE handle (void); const ACE_TCHAR *pathname (void) const; void pathname (const ACE_TCHAR *h); int dispose (void) const; @@ -214,7 +214,7 @@ public: ACE_ALLOC_HOOK_DECLARE; protected: - ACE_SHLIB_HANDLE open_handle (void); + int open_dll (void); /// Pathname to the shared library we are working on. const ACE_TCHAR *pathname_; @@ -226,8 +226,8 @@ protected: */ int must_delete_; - /// Handle to the open shared library. - ACE_SHLIB_HANDLE handle_; + /// The open shared library. + ACE_DLL dll_; /// Symbol that we've obtained from the shared library. void *symbol_; |