简单的CreateProcess()说明

时间:2015-05-15 17:43:21

标签: c++ windows

如何使用CreateProcess()启动程序?我认为一个很好的例子就是像这样的评论代码。

int function() {
  dox(int a, char b); //This does this and you should use it for this
  doz(bool c); //You should use this for this
  if (thisstatus == thatthing) {  //The variable thisthing should contain that
     doy(variable); //This does this and this
  }

1 个答案:

答案 0 :(得分:2)

好吧,查看来自MSDN的CreateProcess()示例

 if(i-1 != -1)
            {
                if(w.get(i-1).beat && w.get(i).beat)
                {
                    w.get(i).beat = false;
                }
            }

我认为在对示例上下文的评论中已经记录得很好。

您可能希望在您的问题中详细说明哪些评论对您来说是不可理解的,因此我可以尝试解释更多(但一般情况下,它们会以示例IMHO解释)。