1

I'm developing an app on MASM using the RadASM IDE. This IDE comes with an IE control (WebBrowser) but the content that I want to display is broken on that browser (XHTML+CSS), also I want to remove the dependency of an external IE dll so the only solution that comes to my mind is use an engine of other browser like Firefox or Chrome. I've searched over the net and I found some DevKits that meets my requeriments, but they are designed to work with VS2005+ or they just are coded on C++.

If someone know a way to integrate a browser engine (Not IE) to a MASM app, will be highly appretiated.

4

2 回答 2

0

您可以使用任何带有预编译二进制文件的 SDK,使用 WinAPI 函数LoadLibraryAGetProcAddress或者,您可以按照Iczelion 在该主题上写的内容(绝对值得一读)或阅读我网站上的3 部分指南(该指南基于 Iczelions 指南但适用于一个实时示例)来为 MASM 构建自己的导入库,即为 FMOD API 创建您自己的 MASM 导入库。

天气值得所有的麻烦是另一个问题。

于 2011-06-29T11:46:39.467 回答
0

我怀疑您会找到任何专门帮助您从汇编语言中调用它的浏览器 SDK。今天几乎没有人真正用汇编语言编写应用程序。但是,C 非常接近于汇编,因此您所要做的就是使用 C 的说明并翻译成汇编语言。由于您已经在用汇编语言编写应用程序,这对您来说应该不成问题。

于 2010-12-28T21:57:46.007 回答