屏幕录像专家 命令行控制源代码

时间:2017-05-17 13:43:23
【文件属性】:
文件名称:屏幕录像专家 命令行控制源代码
文件大小: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;

网友评论

  • D7打开报错!不知道用那个版本
  • 貌似是用delphi编写的,有一定的参考价值。