随笔分类 - 小项目
摘要:描述:启动该程序后,自动检测U盘是否存在,若存在,将U盘中所有的文件拷贝到电脑的指定目录下。 注:本篇博文仅支持技术讨论,不用于数据的盗取之类的黑科技。 本程序基于Win32开发,主要是利用Win32的消息函数。也可是MFC等含有消息循环的体系。 思路: 1.WM_DEVICECHANGE,检查当前
阅读全文
摘要:#include "stdafx.h" #include #include #include #include using namespace std; //获取电脑管理员权限 void GetPrivilege() { HANDLE hToken; TOKEN_PRIVILEGES tkp; if(!OpenProcessToken( Get...
阅读全文
摘要:// ProcessDemo.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include #include #include #include using namespace std; #include #pragma comment(lib,"psapi.lib") BOOL KillProcess(string...
阅读全文
摘要:#include "stdafx.h" #include #include #include "graphics.h" #include using namespace std; //获取显示器的分辨率 const int g_nScreenX=GetSystemMetrics(SM_CXSCREEN); //1280 X 800 const int g_nScreenY=GetS...
阅读全文
摘要:1 //多线程火车购票 2 #include "stdafx.h" 3 #include 4 #include 5 #include 6 #include 7 #include 8 using namespace std; 9 10 int a=100; //如果有100张火车票 11 HANDLE hMutex; 12 DWORD WINAPI Func(LPVOID lp...
阅读全文
摘要:1 #include "stdafx.h" 2 #include 3 #include 4 #include 5 6 int comp(const void *a,const void *b); 7 void print(int num,int p[],char cardValue[]); 8 9 int _tmain(int argc, _TCHAR* argv[]) 1...
阅读全文