Re: [問題]使用system call 如何輸入之後的資訊?

看板C_and_CPP (C/C++)作者 (哈哈 真開心)時間19年前 (2006/02/25 16:36), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/1
成功了~ 謝謝各位~ int main() { STARTUPINFO si; PROCESS_INFORMATION pi; ZeroMemory( &si, sizeof(si) ); si.cb = sizeof(si); ZeroMemory( &pi, sizeof(pi) ); // Start the child process. CreateProcess( NULL, // No module name (use command line). "telnet ptt.cc", // Command line. NULL, // Process handle not inheritable. NULL, // Thread handle not inheritable. FALSE, // Set handle inheritance to FALSE. 0, // No creation flags. NULL, // Use parent's environment block. NULL, // Use parent's starting directory. &si, // Pointer to STARTUPINFO structure. &pi ); // Pointer to PROCESS_INFORMATION structure. keybd_event( 0x30, 0x48,KEYEVENTF_EXTENDEDKEY | 0, 0 ); 這一行模擬鍵盤輸入 0x30是0 ... } -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.112.4.240 ※ 編輯: tree92 來自: 140.112.4.240 (02/25 17:27) ※ 編輯: tree92 來自: 140.112.230.164 (02/26 08:54)
文章代碼(AID): #1401SMFT (C_and_CPP)
文章代碼(AID): #1401SMFT (C_and_CPP)