创建我自己的 dll 和脚本语言以与我的 MFC 应用程序一起使用
我目前对 MFC 不太熟悉,无法创建自己的 dll,然后创建脚本语言以便在我的应用程序中使用此 dll。你们能否建议我任何可能的链接和方向,告诉我应该从哪里开始学习 dll 和我自己的脚本语言并在我的应用程序中执行它们?
提前干杯。
I am currently new to MFC in terms of creating my own dll and then create a scripting language in order to use this dll with my application. Could you guys kindly suggest me any possible links and directions as to from where should I start and go about learning about dll's and my own scripting language and execute them in my application?
Cheers in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
取决于您想使用什么语言作为脚本语言。您可以通过 Windows 脚本宿主将 Visual Basic 和 Javascript 作为 COM 对象嵌入,您可以使用原始 Python 嵌入 API 或 Boost.Python 嵌入 Python,您可以使用 PHP 和 Ruby 等其他语言的本机嵌入 API 来嵌入,您可以使用特定的嵌入语言,如 Lua。从 MSDN 了解 dll,例如从 LoadLibrary 函数的文档开始阅读,它将引导您从那里找到技术说明。
Depends on what language you want to use as scripting language. You can embed Visual Basic and Javascript through the Windows Scripting Host as a COM object, you can embed Python using the raw Python embedding API or Boost.Python, you can embed other languages like PHP and Ruby using their native embedding API's, you can use specific embedding languages like Lua. Learn about dll's from MSDN, start e.g. reading from the docs of the LoadLibrary function, it will lead you to technical notes from there.