摘要: //函数SendInput( __in UINT cInputs, // number of input in the array __in_ecount(cInputs) LPINPUT pInputs, // array of inputs __in int cbSize); // sizeof(INPUT)LPINPUT结构.type#define INPUT_MOUSE 0#define INPUT_KEYBOARD 1#define INPUT_HARDWARE 2//LPINPUT的结构typedef struct tagINPUT { DWORD type; union { MO 阅读全文
posted @ 2012-06-01 09:09 未来,为我而来! 阅读(2949) 评论(0) 推荐(0) 编辑