最新消息:本站技术交流 QQ 群:28124927

Windows 应用编程/MFC

ofstream 写文件

ofstream 写文件

exchen 15年前 (2010-03-30) 2283浏览

#include <iostream> #include <fstream> using namespace std ; void main () { char *...

在 Ring0 中设置注册表键值

在 Ring0 中设置注册表键值

exchen 16年前 (2009-10-18) 5047浏览

/* 在驱动程序中设置注册表表项 By exchen 2009-10-19 */ #include <ntddk.h> VOID DriverUnload(IN PDRIVER_OBJEC...

Ring0 下实现进程隐藏

Ring0 下实现进程隐藏

exchen 16年前 (2009-10-15) 4544浏览

#include "ntddk.h" #define BOOL int #pragma pack(1) typedef struct ServiceDescriptorEntry { unsigne...

在 Ring0 中列举进程

在 Ring0 中列举进程

exchen 16年前 (2009-10-15) 5178浏览

/* 在 Ring0 中列举进程 by exchen 2009-10-10 */ #include "ntddk.h" typedef enum _SYSTEM_INFORMATION_CLASS { ...

VC 实现文件拖放

VC 实现文件拖放

exchen 16年前 (2009-10-10) 3929浏览

/*VC实现文件拖放 by exchen 2009-10-10 */ void CMyDlg::OnDropFiles(HDROP hDropInfo) { // TODO: Add your message handler code here a...

SDK 的下载与安装

SDK 的下载与安装

exchen 16年前 (2009-10-05) 3339浏览

Platform SDK XPSP2: http://www.microsoft.com/msdownload/platformsdk/sdkupdate/XPSP2FULLInstall.htm Platform SDK February 2003...