Windows API 函数读写文件
exchen 15年前 (2010-03-30) 2301浏览 0评论
写文件 #include <stdio.h> #include <windows.h> void main(int argc, char *argv[]) { HAN...
exchen 15年前 (2010-03-30) 2301浏览 0评论
写文件 #include <stdio.h> #include <windows.h> void main(int argc, char *argv[]) { HAN...
exchen 15年前 (2010-03-30) 1891浏览 0评论
#include <iostream> #include <fstream> using namespace std ; void main () { char *...
exchen 15年前 (2009-10-18) 4295浏览 0评论
/* 在驱动程序中设置注册表表项 By exchen 2009-10-19 */ #include <ntddk.h> VOID DriverUnload(IN PDRIVER_OBJEC...
exchen 15年前 (2009-10-16) 4111浏览 0评论
转载请注明:exchen's blog » 写了一个驱动加载工具...
exchen 15年前 (2009-10-15) 3860浏览 0评论
#include "ntddk.h" #define BOOL int #pragma pack(1) typedef struct ServiceDescriptorEntry { unsigne...
exchen 15年前 (2009-10-15) 4509浏览 0评论
/* 在 Ring0 中列举进程 by exchen 2009-10-10 */ #include "ntddk.h" typedef enum _SYSTEM_INFORMATION_CLASS { ...
exchen 15年前 (2009-10-10) 3420浏览 0评论
/*VC实现文件拖放 by exchen 2009-10-10 */ void CMyDlg::OnDropFiles(HDROP hDropInfo) { // TODO: Add your message handler code here a...
exchen 15年前 (2009-10-08) 5152浏览 0评论
驱动程序代码 #include <ntddk.h> #define IOCTL_TEST1 CTL_CODE(\ FILE_DEVICE_UNKNOWN, \ 0x100, \ METHOD_B...
exchen 15年前 (2009-10-07) 5148浏览 0评论
驱动程序代码 #include <ntddk.h> #define IOCTL_TEST1 CTL_CODE(\ FILE_DEVICE_UNKNOWN, \ 0x100, \ METHOD_B...
exchen 15年前 (2009-10-07) 1772浏览 0评论
CString Str1; CString Str2; CString Str3; int x,y,z; GetDlgItemText(IDC_EDIT1,Str1); GetDlgItemText...
exchen 15年前 (2009-10-05) 2995浏览 0评论
Platform SDK XPSP2: http://www.microsoft.com/msdownload/platformsdk/sdkupdate/XPSP2FULLInstall.htm Platform SDK February 2003...