搜索资源列表
CreateProcess
- 这是一个非常好的创建多线程的线程的程序,实现了一个完整的线程的创建
abc
- 通过函数 BOOL CreateProcess(LPCTSTR lpApplicationName,LPTSTR lpCommandLine, LPSECURITY_ATTRIBUTES lpProcessAttributes, LPSECURITY_ATTRIBUTES lpThreadAttributes, BOOL bInheritHandles, DWORD dwCreationFlags, LPVOID lpEnvironment, LPCTSTR lpCurrentDirectory
CreateProcess
- 创建进程的代码,欢迎大家多多交流编程心得
getpubips
- 本程序可以自动获取公网IP然后上传到指定网络地址空间上,而且支持和本机IP变动同步更新IP数据上传到地址空间,开机自动运行,全局快捷键。 本程序是适应中国动态IP而制作,假如有人想在自己机器上架设服务器,但IP是动态的 也就是IP会经常变动,但本程序可以实现IP动态绑定,从而给用户感觉是静态IP的感觉。 本程序在运行中会自己生成一个网页(包含本机IP),上传到指定的网络地址空间,当用户在网络上浏览该网页 该网页会自动转向到本机IP,这一切的一切都是程序自动完成。用户只需要进行
4EVC27678
- 用Evc开发的一些实例程序源代码,供用Evc这个IDE的参考,程序实例有:CreateProcess、IPC_MSGCLIENT、IPC_MSGServer、TaskList-Evc development with some examples of the program's source code used for the IDE Evc reference for the program examples : CreateProcess, IPC_MSGCLIENT, IPC_MS
HookCreateProcess.rar
- API Hook,实现了对CreateProcess的挂钩,可以监视进程的创建。,API Hook, to achieve the linking of CreateProcess, you can create a monitoring process.
CreateProcess
- 采用vc实现的创建管理进程的程序,有mfc界面,便于操作,代码容易理解-Vc achieved by the process of creating management procedures, mfc interface, easy operation, code easy to understand
CreateProcessMFC
- 分别用CreateProcess()和ShellExecute()实现打开新的应用程序,并在规定时间内关掉进程。-Were treated with CreateProcess () and ShellExecute () the realization of new applications to open and turn off the process of the time.
CreateProcess
- CreateProcess 易语言的用法示例,隐藏打开一个进程,获取其pid hwnd-CreateProcess
CreateProcess
- 在Linux下面的编程,创建进程、线程和进程同步。-In the Linux programming below, create a process, thread and process synchronization.
TSKMON95
- For Windows 95 only! This simple task monitor program with Delphi & C SOURCE CODE demonstrates a generic hooking technique that can be applied to virtually any Win32 API - in this case, CreateProcess and ExitProcess. The program will display
CreateProcess
- 进程创建入门实例,通过简单调用API函数来创建一个简单的进程,并返回相关信息-CreateProcess
CreateProcess
- CreateProcess()函数的原型-CreateProcess()
HookCreateProcess
- hook createprocess函数-hook createprocess function
CreateProcess
- CreateProcess WINDOWS
XueTr
- 1.进程、线程、进程模块、进程窗口、进程内存信息查看,热键信息查看,杀进程、杀线程、卸载模块等功能 2.内核驱动模块查看,支持内核驱动模块的内存拷贝 3.SSDT、Shadow SSDT、FSD、KBD、TCPIP、IDT信息查看,并能检测和恢复ssdt hook和inline hook 4.CreateProcess、CreateThread、LoadImage、CmpCallback、BugCheckCallback、Shutdown、Lego等Notify Routine信息查
JobObject
- 通过windows的内核对象JobObject实现对程序的运行时间和内存使用的控制,开发初衷是作为一个简陋的acm判题沙箱. 大致步骤: 1.通过CreateJobObject创建一个工作对象 2.通过SetInformationJobObject设置工作对象的参数,详见MSDN(http://msdn.microsoft.com/zh-cn/library/ms686216) 3.以CREATE_SUSPENDED方式启动进程,通过CreatePro
createprocess
- delphi开发的能实现自我复制的小程序,模仿了病毒的自己复制与创建进程能力-the duplicate itself program developed by delphi, it s function include create process
test
- 设计并实现Unix的“time”命令。“mytime”命令通过命令行参数接受要运行的程序,创建一个独立的进程来运行该程序,并记录程序运行的时间。 在Windows下实现: 使用CreateProcess()来创建进程 使用WaitForSingleObject()在“mytime”命令和新创建的进程之间同步 调用GetSystemTime()来获取时间 -Design and implementation of Unix " time" c
mytime
- 设计并实现Unix的“time”命令。“mytime”命令通过命令行参数接受要运行的程序,创建一个独立的进程来运行该程序,并记录程序运行的时间。 在Windows下实现: • 使用CreateProcess()来创建进程 • 使用WaitForSingleObject()在“mytime”命令和新创建的进程之间同步 • 调用GetSystemTime()来获取时间 在Linux下实现: • 使用fork()/execv()来