ofstream 写文件
15年前 (2010-03-30) 2286浏览
#include <iostream> #include <fstream> using namespace std ; void main () { char *...
15年前 (2010-03-30) 2286浏览
#include <iostream> #include <fstream> using namespace std ; void main () { char *...
16年前 (2009-12-21) 4953浏览
/*程序名称:自定义回调函数实例 作者:exchen(Sysprogram) 日期:2009年12月21日 */ #include <stdio.h> int Print() {...
16年前 (2009-10-18) 5051浏览
/* 在驱动程序中设置注册表表项 By exchen 2009-10-19 */ #include <ntddk.h> VOID DriverUnload(IN PDRIVER_OBJEC...
16年前 (2009-10-16) 4848浏览
转载请注明:exchen's blog » 写了一个驱动加载工具...
16年前 (2009-10-15) 4548浏览
#include "ntddk.h" #define BOOL int #pragma pack(1) typedef struct ServiceDescriptorEntry { unsigne...
16年前 (2009-10-15) 5181浏览
/* 在 Ring0 中列举进程 by exchen 2009-10-10 */ #include "ntddk.h" typedef enum _SYSTEM_INFORMATION_CLASS { ...
16年前 (2009-10-14) 4263浏览
#include <iostream.h> class point { public: int x; int y; //构造函数 point() { x=0; ...
16年前 (2009-10-14) 4001浏览
#include <iostream.h> class point { public: int x; int y; void output() { cout <&l...
16年前 (2009-10-14) 4883浏览
#include <iostream.h> struct point { int x; int y; void output() { cout << x <...
16年前 (2009-10-14) 4274浏览
#include <iostream.h> struct point { int x; int y; }; void main() { point pt; pt.x ...
16年前 (2009-10-10) 3932浏览
/*VC实现文件拖放 by exchen 2009-10-10 */ void CMyDlg::OnDropFiles(HDROP hDropInfo) { // TODO: Add your message handler code here a...
16年前 (2009-10-10) 4823浏览
驱动程序代码 /* Hook ZwOpenProcess by exchen 2009-10-10 */ #include "ntddk.h" #define NT_DEVICE_NAME ...