zoukankan      html  css  js  c++  java
  • delphi WaitForSingleObject 示例之一等待另一个进程的结束

    <pre>unit Unit1;

    interface

    uses
    Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
    Dialogs, StdCtrls;

    type
    TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
    end;

    var
    Form1: TForm1;

    implementation

    var
    hProcess: THandle;


    function MyThreadFun(p: Pointer): DWORD; stdcall;
    begin
    if WaitForSingleObject(hProcess, INFINITE) = WAIT_OBJECT_0 then
    Form1.Text := Format('进程 %d 已关闭', [hProcess]);
    Result := 0;
    end;


    procedure TForm1.Button1Click(Sender: TObject);
    var
    pInfo: TProcessInformation;
    sInfo: TStartupInfo;
    Path: array[0..MAX_PATH-1] of Char;
    ThreadID: DWORD;
    begin

    GetSystemDirectory(Path, MAX_PATH);
    StrCat(Path, 'otepad.exe');


    FillChar(sInfo, SizeOf(sInfo), 0);
    if CreateProcess(Path, nil, nil, nil, False, 0, nil, nil, sInfo, pInfo) then
    begin
    hProcess := pInfo.hProcess;
    Text := Format('进程 %d 已启动', [hProcess]);
    CreateThread(nil, 0, @MyThreadFun, nil, 0, ThreadID);
    end;
    end;

    end.

  • 相关阅读:
    localhost/127.0.0.1:8080
    android要注意的小问题
    2016年度工作计划
    2016年度计划总结
    竞品分析的思路
    《竞品调研:抄也是一门学问》学习总结
    书籍名单
    2015年度计划-总结
    以前的博客
    和老板沟通学习记录
  • 原文地址:https://www.cnblogs.com/blogpro/p/11454026.html
Copyright © 2011-2022 走看看