VC++
早起旺财
百无一用
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
关于API HOOK(OpenProcess),根据网上文章改写
以下是部分程序,在VC++6.0 Plat SDK 2003 SP1下编译通过#include #include "APIHook.h"extern CAPIHook g_OpenProcess;// 自定义OpenProcess函数#pragma data_seg("YCIShared")HHOOK g_hHook = NULL;DWORD dwCurrentProcess原创 2006-01-12 17:02:00 · 4539 阅读 · 4 评论 -
c++构造与析构函数
#include "iostream.h"#include "string.h"class base{public: base( const char *p) { strcpy(t,p); cout } ~base() { cout } void get() { cout cout } private : static int w; char t[20]; };int base::原创 2007-05-20 15:25:00 · 495 阅读 · 0 评论
分享