MilCore.dll 中的 MilRelease api 的替代方案是什么?

发布于 2024-09-04 05:16:51 字数 391 浏览 2 评论 0原文

您好,我正在尝试将我的应用程序从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遮了一弯 2024-09-11 05:16:51

创建的资源

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文