本文介绍了对gdiplus的依赖的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我构建了一个c/c ++应用程序,该应用程序必须通过Win 7在Win98上运行,并且在将其编译到我的XP机器上之后,它对gdiplus具有依赖性.
由于Win98不支持gdiplus,如何删除此依赖项?
它不需要GDIPlus,只包含一个简单的对话框.

[添加]

我看过Dependency Walker,它把GDIPlus列为对我的.EXE文件的直接依赖项.列表看起来像这样.....

myApp.exe

I built a c/c++ application that must run on Win98 through Win 7 and after compiling it on my XP box it has a dependency on gdiplus.
Since Win98 doesnt support gdiplus how do I remove this dependency?
It has no need for GDIPlus and contains only 1 simple dialog box.

[added]

I have looked at Dependency walker and it lists GDIPlus as a direct dependency on my .EXE file.
The list looks like this.....

myApp.exe

Kernel32.DLL
User32.DLL
OLE32.DLL
.
.
.
.
GDIplus.DLL


[/添加]


[/added]

推荐答案



这篇关于对gdiplus的依赖的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 02:29