Rundll32 使用技巧
exchen 14年前 (2010-08-30) 3292浏览 0评论
rundll32.exe shell32.dll,SHFormatDrive 转载请注明:exchen's blog » Rundll32 使用技巧...
exchen 14年前 (2010-08-30) 3292浏览 0评论
rundll32.exe shell32.dll,SHFormatDrive 转载请注明:exchen's blog » Rundll32 使用技巧...
exchen 14年前 (2010-08-19) 3631浏览 0评论
void CTestDlg::OnOK() { // TODO: Add extra validation here CEdit* edit; edit = new CEdit; edit-...
exchen 14年前 (2010-08-18) 4053浏览 0评论
获取命令行的方法: 1、GetCommandLine() 获取输入的所有信息,包括程序所在路径及参数 2、AfxGetApp()->m_lpCmdLine 只包含参数 一般情况下,获取到命令行后就可以针对命令行中的内容进行相应的处理了 CObject...
exchen 14年前 (2010-08-18) 4073浏览 0评论
在MFC程序中,可以用以下几种方法来获取命令行参数。 为方便说明,我们假设执行了命令:C:\test\app.exe -1 -2 方法一 ::GetCommandLine(); 将获取到 "C:\test\app.exe" -1 -2 方法二 for...
exchen 14年前 (2010-08-04) 4223浏览 0评论
一个栈溢出的经典代码 #include <stdio.h> #include <string.h> void overflow(char* buf) { char des[5]="";...
exchen 14年前 (2010-08-04) 4038浏览 0评论
栈在内存中到底是如何表现的呢?我们来做一个实例调试一下。 代码如下: #include void main() { _asm { push 0x12345678 push 0x11112222 pop eax pop ebx } } 按F9下一个断点...