资源简介
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\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
文件 2 2016-10-27 17:36 GetMsg\GetMsg\Debug\li
............此处省略70个文件信息
相关资源
- VC基本图像处理源码集
- c++ 直线裁剪、画矩形等(graphics)
- SpaceClaim2016_SP0_UsersGuide
- CUDA 编程4.2(CUDA_C_Programming_Guide_4.2)
- 圆环纹理映射(c++项目)
- opencv 动物识别
- 《DirectX游戏开发终极指南》随书源码
- 人脸特征点检测,轻量级的MTCNN实现
- visual c++数字图像模式识别技术详解
- Learning OpenCV3 英文版
- VC+MFC实现真实感图形(正方体+菊花)
- cuda c编程(CUDA_C_Programming_Guide)
- OpenCV实现移动跟踪非常简单
- Qt5C++GUIProgrammingCookbook(PDF+源码)
- c++ 电子海图简单程序
- 《从0到1教你写uCOS-III》pdf 图文教程(
- C++/Qt 期货数据获取
- c++ 实时获取光标处颜色(类似抓色器
- c++ 执行脚本的程序(一键安装全部卸
- 定时器 c++源码
- office 文档自动打印
- 7z sdk的C++封装
- vc6 读取 shp文件
- 单片机与PC机串口通信的类程序
- Amcap源码
- c++ 压缩文件/解压缩文件 (亲测通过
- c++ 串口通信Demo源码(方便学习调试)
- 通过图像实现Z轴定位(opencv)
- 邓俊辉数据结构(C++版)第三版
- C程序设计
评论
共有 条评论