Visual Studio 中的单独 MIDL 项目
我正在尝试为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
midl 编译器生成 3 个文件:头文件 (.h)、客户端存根 (.c) 和服务器存根 (.c)。您应该在客户端程序中包含标头和客户端存根,在服务器程序中包含标头和服务器存根。阅读:
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: