Improve proxy destruction comment.

This commit is contained in:
Robert Shearman 2004-10-18 19:34:51 +00:00 committed by Alexandre Julliard
parent 049dce7cd0
commit 0fb8f4a15e
1 changed files with 5 additions and 2 deletions

View File

@ -515,8 +515,11 @@ void WINAPI CoUninitialize(void)
RunningObjectTableImpl_UnInitialize();
/* disconnect proxies to release the corresponding stubs.
* FIXME: native version might not do this and we might just be working
* around bugs elsewhere. */
* It is confirmed in "Essential COM" in the sub-chapter on
* "Lifecycle Management and Marshaling" that the native version also
* does some kind of proxy cleanup in this function.
* FIXME: does it just disconnect or completely destroy the proxies?
* FIXME: should this be in the apartment destructor? */
MARSHAL_Disconnect_Proxies();
/* Release the references to the registered class objects */