码迷,mamicode.com
首页 >  
搜索关键字:dword    ( 801个结果
命令行 uac
reg.exeADDHKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System/vEnableLUA/tREG_DWORD/d0/f
分类:其他好文   时间:2014-06-28 06:51:47    阅读次数:161
windows 模拟按键与鼠标
windows 模拟按键与鼠标 函数功能:模拟按键或鼠标。一次完整的按键由KEYEVENTF_KEYDOWN和KEYEVENTF_KEYUP两个子事件组成。 函数原型: VOID keybd_event(BYTE bVk,BYTE bScan,DWORD dwFlags,DWORD dwExtralnfo); bVk:定义一个虚拟键码。键码值必须在1~254之间。 bScan:定...
分类:Windows程序   时间:2014-06-26 11:05:28    阅读次数:373
读者写着问题
读者优先 //读者写者问题-读者优先 #include #include #include using namespace std; HANDLE rmutex,wmutex; int Readcount=0; int read_num=10,write_num=5; DWORD WINAPI read(LPVOID lpParam) { WaitForSingleObject(...
分类:其他好文   时间:2014-06-26 10:41:57    阅读次数:185
xlat指令...
1 ;就是一个串str1, lea ebx, str1 然后我们ebx+1总是加上的是一个字节, 无论(串是word, byte, dword) 2 .386 3 .model flat 4 .stack 4096 5 include io.h 6 ExitProcess proto near32....
分类:其他好文   时间:2014-06-25 11:49:37    阅读次数:205
管道(Pipe)/createPipe
BOOL CreatePipe(PHANDLE hReadPipe, // 指向读句柄的指针 PHANDLE hWritePipe, // 指向写句柄的指针 LPSECURITY_ATTRIBUTES lpPipeAttributes, // 指向安全属性的指针 DWORD nSize // 管道大...
分类:其他好文   时间:2014-06-22 13:18:27    阅读次数:212
汇编汉诺塔
1 .386 2 .model flat 3 .stack 4096 4 include io.h 5 ExitProcess proto near32 stdcall, ExitCode:dword 6 cr equ 0dh 7 lf equ 0ah 8 .data 9 string1 byte....
分类:其他好文   时间:2014-06-19 00:40:28    阅读次数:269
win7下万能跨进程PostMessage/SendMessage
typedef BOOL (WINAPI *_ChangeWindowMessageFilter)( UINT , DWORD); BOOL AllowMeesageForWin7(UINT uMessageID, BOOL bAllow)//注册Win7全局消息 { BOOL bResul...
分类:Windows程序   时间:2014-06-18 18:10:01    阅读次数:373
函数 MultiByteToWideChar() 详解
函数原型:int MultiByteToWideChar(UINT CodePage,DWORD dwFlags,LPCSTR lpMultiByteStr,int cchMultiByte,LPWSTR lpWideCharStr,int cchWideChar);补充:如果ANSI代码页允许在不...
分类:其他好文   时间:2014-06-18 10:33:15    阅读次数:493
函数WideCharToMultiByte() 详解
函数原型:int WideCharToMultiByte( UINT CodePage, DWORD dwFlags, LPWSTR lpWideCharStr, int cchWideChar, LPCSTR lpMultiByteStr, int cchMultiByte, LPCS...
分类:其他好文   时间:2014-06-18 10:08:58    阅读次数:166
工作笔记(一)
1.The GetCurrentDirectory function retrieves the current directory for the current processDWORD GetCurrentDirectory( DWORD nBufferLength, // size of d...
分类:其他好文   时间:2014-06-17 13:44:58    阅读次数:206
801条   上一页 1 ... 74 75 76 77 78 ... 81 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!