MilCore.dll 中的 MilRelease api 的替代方案是什么?
您好,我正在尝试将我的应用程序从 Windows Vista 移植到 Windows 7。 在我的 WPF 应用程序中,我显示了一个启动屏幕,我为此使用了 WIC 组件。 我正在使用
IWICImagingFactory_CreateDecoderFromStream_Proxy 创建一些资源 IWICImagingFactory_CreateFormatConverter_Proxy CreateBitmapFlipRotator
然后为了释放这些资源,我调用
MILRelease(void *Unknown)
在 Windows 7 中 MilCore.dll 已从 Windows 7 中删除,MILRelease 是 milcore.dll 的一部分。我可以使用的替代 api 是什么?
Hi I am trying to port my application from windows Vista to Windows 7.
In my WPF application I am showing a splash screen, for which I have used WIC components.
I am creating some resources using
IWICImagingFactory_CreateDecoderFromStream_Proxy
IWICImagingFactory_CreateFormatConverter_Proxy
CreateBitmapFlipRotator
And then to release these resource I am calling
MILRelease(void *Unknown)
In Windows 7 MilCore.dll has been removed from Windows 7 and the MILRelease is part of milcore.dll. What is is the alternate api which I can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建的资源
IWICImagingFactory_CreateDecoderFromStream_Proxy
IWICImagingFactory_CreateFormatConverter_Proxy
CreateBitmapFlipRotator
可以使用 Marshal::Release() 释放,
更多详情请查看。
http://msdn.microsoft.com/ en-us/library/system.runtime.interopservices.marshal.release.aspx
Resources created by
IWICImagingFactory_CreateDecoderFromStream_Proxy
IWICImagingFactory_CreateFormatConverter_Proxy
CreateBitmapFlipRotator
Can be released using Marshal::Release()
For more details check out.
http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.marshal.release.aspx