Re: luacom: why no Release()?
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: luacom: why no Release()?
- From: Ignacio Burgueño <ignaciob@...>
- Date: 2009年7月28日 19:55:55 -0300
King, Mike wrote:
Why is it that COM objects are not gc'ed (Released) when Lua exits?
Well, they are. Under which circumstances it is failing to release your
objects??
For instance, this test script instances a COM object of mine, which
shows a message box when it is finally released, and it works fine:
require"luacom"
a = luacom.CreateObject("foo.bar")
when the script ends, I got my message box as intended.
Regards,
Ignacio Burgueño