summaryrefslogtreecommitdiff
path: root/ace/DLL.h
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-06 05:17:36 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-06 05:17:36 +0000
commit6eb597b23271cdfa30ca8dad20e9225c22ddccef (patch)
treeaab85878abb2a5b2a5d9758f40d1e4554c5d91e2 /ace/DLL.h
parente393cde00188813f73e180c27e1a136aa43bdd4d (diff)
downloadATCD-6eb597b23271cdfa30ca8dad20e9225c22ddccef.tar.gz
Added set_handle () method.
Diffstat (limited to 'ace/DLL.h')
-rw-r--r--ace/DLL.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/ace/DLL.h b/ace/DLL.h
index 8ce7503e7c2..47799d3f2ea 100644
--- a/ace/DLL.h
+++ b/ace/DLL.h
@@ -87,6 +87,9 @@ public:
// won't call <close> when it goes out of scope, even if
// <close_on_destruction> is set.
+ int set_handle (ACE_SHLIB_HANDLE handle, int close_on_destruction = 1);
+ // Set the handle for the DLL object. By default, the <close> operation on the
+ // object will be invoked before it is destroyed.
private:
ACE_SHLIB_HANDLE handle_;
// This is a handle to the DLL.