文件名称:屏幕录像专家 命令行控制源代码
文件大小:11KB
文件格式:DPR
更新时间:2017-05-17 13:43:23
控制源代码
屏幕录像专家 命令行控制源代码 function E(h: HWND; l: Integer): LongBool; stdcall; var Buff: array[0..255] of Char; PWinData: PFindWindowData; begin Result := False; GetWindowText(h, Buff, 255); PWinData := PFindWindowData(l); if AnsiCompareStr(Buff, PWinData.WindowName)=0 then begin PWinData.Wnd := h; Result := false; end; Result := true; end;