• 大小: 21.36M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 语言: C/C++
  • 标签: c++  c  

资源简介

c 获取另一个程序的RichTextWndClass的内容

资源截图

代码片段和文件信息

// GetMsg.cpp : 定义控制台应用程序的入口点。
//

#include “stdafx.h“
#include 
#include 
#include“tlhelp32.h“
#include 
#pragma comment ( lib “Psapi.lib“ )
using namespace std;

HWND hwndhListview;

/////////////////////////根据程序名字获取PID//////////////////////////////////////
DWORD WINAPI GetProcessIdByName(LPCTSTR lpFilename)
{
DWORD dwProcessId = 0;
PROCESSENTRY32 pe32; 
pe32.dwSize = sizeof(pe32);
HANDLE hProcessSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS0);
if(hProcessSnap == INVALID_HANDLE_VALUE) return 0;
if(!Process32First(hProcessSnap&pe32)){CloseHandle(hProcessSnap);return 0;}
do
{
 CString exeName = pe32.szExeFile;
 CString findName = lpFilename;
 if(findName.CompareNoCase(exeName) == 0)
 {
 //wcout << exeName.Get

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      43008  2016-10-27 17:36  GetMsg\Debug\GetMsg.exe

     文件        667  2016-10-24 14:30  GetMsg\Debug\GetMsg.exe.manifest

     文件     765100  2016-10-27 17:36  GetMsg\Debug\GetMsg.ilk

     文件    1920000  2016-10-27 17:36  GetMsg\Debug\GetMsg.pdb

     文件       1234  2016-10-27 17:36  GetMsg\GetMsg\Debug\cl.command.1.tlog

     文件      27402  2016-10-27 17:36  GetMsg\GetMsg\Debug\CL.read.1.tlog

     文件        658  2016-10-27 17:36  GetMsg\GetMsg\Debug\CL.write.1.tlog

     文件       1013  2016-10-24 14:25  GetMsg\GetMsg\Debug\GetMsg.Build.CppClean.log

     文件        381  2016-10-27 17:36  GetMsg\GetMsg\Debug\GetMsg.exe.intermediate.manifest

     文件         46  2016-10-27 17:36  GetMsg\GetMsg\Debug\GetMsg.lastbuildstate

     文件       1796  2016-10-27 17:36  GetMsg\GetMsg\Debug\GetMsg.log

     文件     107705  2016-10-27 17:36  GetMsg\GetMsg\Debug\GetMsg.obj

     文件        713  2016-10-24 14:25  GetMsg\GetMsg\Debug\GetMsg.vcxprojResolveAssemblyReference.cache

     文件          0  2016-10-24 14:25  GetMsg\GetMsg\Debug\GetMsg.write.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.10304.read.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.10304.write.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.10352.read.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.10352.write.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.10364.read.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.10364.write.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.10528.read.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.10528.write.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.11516.read.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.11516.write.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.11576.read.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.11576.write.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.11580.read.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.11580.write.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.11668.read.1.tlog

     文件          2  2016-10-27 17:36  GetMsg\GetMsg\Debug\link.11668.write.1.tlog

............此处省略70个文件信息

评论

共有 条评论