Visual Studio 中的单独 MIDL 项目

发布于 2024-12-09 16:36:07 字数 181 浏览 0 评论 0原文

我正在尝试为 midl 编译器生成的文件创建单独的项目。 我有带有 rpc 定义的 .idl 文件。 Midl 编译器生成两个文件。对于服务器和客户端。我需要将生成的文件中的符号添加到其他项目中。 我的问题是如何正确设置 midl 编译项目。

I'm trying to make separate project for generated files from midl compiler.
I have .idl file with rpc definitions. Midl compiler generates two files. For server and for client. And I need to add symbols from generated files to other projects.
My question is how to setup properly project for midl compilation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

邮友 2024-12-16 16:36:07

midl 编译器生成 3 个文件:头文件 (.h)、客户端存根 (.c) 和服务器存根 (.c)。您应该在客户端程序中包含标头和客户端存根,在服务器程序中包含标头和服务器存根。阅读:

  1. 开发服务器
  2. <一个href="http://msdn.microsoft.com/en-us/library/windows/desktop/aa373634%28v=vs.85%29.aspx" rel="nofollow">开发客户端

The midl compiler generates 3 files: header (.h), client stub (.c) and server stub (.c). You should include the header and the client stub in client programs, and the header and server stub in server programs. Read:

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