Improve proxy destruction comment.
This commit is contained in:
parent
049dce7cd0
commit
0fb8f4a15e
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue