使用 createProcess 使用另一个项目的方法
假设我有一个包含一些方法的“.c”文件,并且我创建了一个新项目,我需要在其中创建一个使用上一个项目中的方法的流程......所有这些都在同一解决方案下。
在我正在处理的当前项目中,我使用“createProcess”方法创建了一个流程, 然后我将属于第一个项目的“.exe”文件传递给“CommandLine”参数,该文件包含“.c”文件(我的所有方法都在其中)。
如何访问这些方法&使用它们?
Lets say I have a ".c" file with some methods, and I create a new project where I need to make a process that uses the methods from the previouse project....All under the same solution.
In the current project that I'm working on I create a process with the method "createProcess",
and then I pass to the "CommandLine" parameter the ".exe" file that belong for the 1st project,the one with the ".c" file (where all my methods are).
How is it possible to access these methods & use them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
常见的“方法”(在 C 中称为函数)应提取到它们自己的源代码文件中,不带“main”。函数原型应该位于它们自己的头文件中。确保函数未声明为“静态”。
现在#include 两个主要源文件中的头文件。每个项目应该有两个 C 源文件,一个包含“main”,另一个包含公共函数 - 因此公共函数源文件位于两个(或更多)项目中。
从长远来看,最好将通用函数放入它们自己的 DLL 中 - 但这也许是另一天的事了。
The common 'methods' (in C these are called functions) should extracted to be in their own source-code file without a 'main'. The function prototypes should be in their own header file. Make sure the functions are not declared as 'static'.
Now #include the header file in the two main source files. Each project should have two C source files, the one containing 'main' and the one containing the common functions - so the common functions source file is in two (or more) projects.
Longer term it would be better to put the common functions into their own DLL - but that's maybe for another day.