-
完全实现注册表处理,文件处理。服务端采用多线程服务,能最好的处理SOCKET请求。数据接收、发送函数可以说是现阶段最好的,采用异步重叠操作。可以取得被控机器上的...
完全实现注册表处理,文件处理。服务端采用多线程服务,能最好的处理SOCKET请求。数据接收、发送函数可以说是现阶段最好的,采用异步重叠操作。可以取得被控机器上的硬件信息,文件信息,注册表以及进行屏幕控制。 代码中的SOCKET重叠I/O的实现也很值得参-complete registry handling, document handling. Server using multithreading services will best address SOCKET request. Data reception, sending function can be said at this stage the best, using asynchronous overlapping operations. Machines can get charged with the hardware information, document information, registry and control for the screen. SOCKET code of overlapping I/O is also the realization worth Participation
- 2023-07-22 03:45:06下载
- 积分:1
-
自动重启计算机系统,本代码包含相应功能函数,参考代码可编写相关功能。...
自动重启计算机系统,本代码包含相应功能函数,参考代码可编写相关功能。-automatically restart the computer system, this code contains the corresponding function, reference code can be prepared related functions.
- 2022-07-14 15:56:45下载
- 积分:1
-
在NT上使用其他用户运行其他用户的应用程序
在NT上使用其他用户运行其他用户的应用程序 -Running other users app using the other users username in NT
- 2022-09-18 05:15:03下载
- 积分:1
-
用钩子做的类似金山词霸的屏幕取词的源码,希望对大家有帮助...
用钩子做的类似金山词霸的屏幕取词的源码,希望对大家有帮助-Used to do a similar hook PowerWord of capturing the source, and they hope to help everyone
- 2022-02-01 15:34:44下载
- 积分:1
-
剪贴板查看器代码,可直接运行。VC++语言开发,可用来学习剪贴板的操作和使用。...
剪贴板查看器代码,可直接运行。VC++语言开发,可用来学习剪贴板的操作和使用。-Clipboard Viewer code, can be directly run. VC++ Language development, can be used to study the operation and use of the clipboard.
- 2022-05-17 21:00:44下载
- 积分:1
-
MFC procedures in the use of VC Components
在MFC程序中使用VC Components-MFC procedures in the use of VC Components
- 2022-03-23 19:28:15下载
- 积分:1
-
window启动自动加载程序:
学习dephi对window注册表的调用;
了解window对自启动程序的管理;...
window启动自动加载程序:
学习dephi对window注册表的调用;
了解window对自启动程序的管理;-window activated automatically load : study dephi right window registry calls; Understanding since the launch window to the management procedures;
- 2022-07-16 11:26:18下载
- 积分:1
-
喷泉码 LT嘛的vc实现,绝对首创,欢迎交流共享
喷泉码 LT嘛的vc实现,绝对首创,欢迎交流共享-Fountain Code of vc realize why LT is absolutely the first to welcome the exchange of shared
- 2022-03-31 14:47:52下载
- 积分:1
-
这是一个通过发送虚拟键盘控制其它程序的例子,比如控制powerpoint的切换等操作。是遥控程序的一个典型例子...
这是一个通过发送虚拟键盘控制其它程序的例子,比如控制powerpoint的切换等操作。是遥控程序的一个典型例子-This is a virtual keyboard by sending control procedures other examples, such as the switching control powerpoint operational. Remote procedure is a typical example of
- 2023-07-28 20:40:03下载
- 积分:1
-
关于如何锁住键盘和鼠标
钩子实际上是一个处理消息的程序段,通过系统调用,把它挂入系统。每当特定的消息发出,在没有到达目的窗口前,钩子程序就先捕获该消息,亦即钩子函数先得到控制权。这时钩子函数即可以加工处理(改变)该消息,也可以不作处理而继续传递该消息,还可以强制结束消息的传递。对每种类型的钩子由系统来维护一个钩子链,最近安装的钩子放在链的开始,而最先安装的钩子放在最后,也就是后加入的先获得控制权。要实现Win32的系统钩子,必须调用SDK中的API函数SetWindowsHookEx来安装这个钩子函数,这个函数的原型是HHOOK SetWindowsHookEx(int idHook,HOOKPROC lpfn,HINSTANCE hMod,DWORD dwThreadId);,其中,第一个参数是钩子的类型;第二个参数是钩子函数的地址;第三个参数是包含钩子函数的模块句柄;第四个参数指定监视的线程。
- 2022-02-24 11:14:29下载
- 积分:1