diff options
Diffstat (limited to 'externals/ace/DLL.h')
-rw-r--r-- | externals/ace/DLL.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/externals/ace/DLL.h b/externals/ace/DLL.h index fa748e8d944..20d333db81a 100644 --- a/externals/ace/DLL.h +++ b/externals/ace/DLL.h @@ -4,7 +4,7 @@ /** * @file DLL.h * - * $Id: DLL.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: DLL.h 91064 2010-07-12 10:11:24Z johnnyw $ * * @author Kirthika Parameswaran <kirthika@cs.wustl.edu> */ @@ -151,12 +151,12 @@ public: * Return the handle to the caller. If @a become_owner is non-0 then * caller assumes ownership of the handle and the ACE_DLL object * won't call close() when it goes out of scope, even if - * <close_handle_on_destruction> is set. + * @c close_handle_on_destruction is set. */ ACE_SHLIB_HANDLE get_handle (int become_owner = 0) const; /// Set the handle for the DLL object. By default, the close() - //operation on / the object will be invoked before it is destroyed. + /// operation on / the object will be invoked before it is destroyed. int set_handle (ACE_SHLIB_HANDLE handle, bool close_handle_on_destruction = true); |