码迷,mamicode.com
首页 >  
搜索关键字:dword    ( 801个结果
PE文件结构体-IMAGE_FILE_HEADER
struct _IMAGE_FILE_HEADER { WORD Machine; //运行平台 WORD NumberOfSections; //文件的区块数目 DWORD TimeDateStamp; //文件创建日期和时间 DWORD PointerToSymbolTable; //指向符号表 ...
分类:其他好文   时间:2020-01-30 14:12:05    阅读次数:108
Windows hide drive
HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer\ NoDrives DWord 32 A:1 B:2 C:4 D:8 E:16 F:32 G:64 H:128 I:256 J:512 K:1024 L:2048 M: ...
分类:Windows程序   时间:2020-01-29 12:34:39    阅读次数:87
FX_DWORD >>4 等于0
#include <iostream> typedef unsigned int FX_DWORD; typedef unsigned long long FX_UINT64; typedef unsigned int FX_UINTPTR; int main() { FX_DWORD i = ((... ...
分类:其他好文   时间:2020-01-17 11:32:26    阅读次数:56
实现:ipc$命名管道连接
``` #include #include #include #pragma comment(lib, "Mpr.lib") using namespace std; int wmain(int argc,wchar_t * argv[]) { /* DWORD WNetAddConnection2... ...
分类:其他好文   时间:2020-01-14 09:17:14    阅读次数:97
c++ 反汇编 数组和指针
字符串初始化字符数组 58: char as[] = "hello word"; 00AC7308 A1 70 2E B6 00 mov eax,dword ptr [string "hello word" (0B62E70h)] 00AC730D 89 45 EC mov dword ptr [a ...
分类:编程语言   时间:2020-01-09 18:44:32    阅读次数:93
c++ 反汇编 循环结构
debug do···while 23: int nSum = 0; 00A572AE C7 45 F8 00 00 00 00 mov dword ptr [nSum],0 24: int nIndex = 0; 00A572B5 C7 45 EC 00 00 00 00 mov dword pt ...
分类:编程语言   时间:2020-01-06 21:08:47    阅读次数:97
c++反汇编 switch
switch 线性处理 24: int nIndex = 0; 01377EBE C7 45 F8 00 00 00 00 mov dword ptr [nIndex],0 25: scanf("%d", &nIndex); 01377EC5 8D 45 F8 lea eax,[nIndex] 01 ...
分类:编程语言   时间:2020-01-06 14:35:48    阅读次数:89
VS2010/MFC 获取当前程序路径的方法
第一种方法 DWORD GetCurrentDirectory( DWORD nBufferLength, // size, in characters, of directory buffer LPTSTR lpBuffer // pointer to buffer for current dir ...
分类:编程语言   时间:2020-01-05 15:53:10    阅读次数:158
《C++反汇编与逆向分析技术揭秘》--算术运算和赋值
一、加法 1.Debug下: 14: int nVarOne0 = 1 + 5 - 3 * 6;//编译时计算得到结果 00C0550E C7 45 F8 F4 FF FF FF mov dword ptr [nVarOne0],0FFFFFFF4h 15: cout << nVarOne0 << ...
分类:编程语言   时间:2020-01-02 22:13:47    阅读次数:96
GetFileSize的用法(含格式化字符串的用法)
1 void CGetFileSizeDlg::OnBnClickedButton1() 2 { 3 CString strFile; 4 GetDlgItemText(IDC_EDIT1, strFile); 5 DWORD dwHigh = 0;//(文件大小超过4GB)存放33-64位高位 6 ...
分类:其他好文   时间:2020-01-01 22:09:45    阅读次数:126
801条   上一页 1 ... 5 6 7 8 9 ... 81 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!