He comentado casi todo lo que sé. Estoy bastante seguro de que el problema surge en AttachThreadInput. Estaba diseñado para funcionar solo a 32 bits, creo. Créame, si pudiera resolver esto yo mismo, estaría feliz de hacerlo. Leí toda la documentación para eventos en Windows (here) y no estoy más cerca de una solución. Si tienes alguna idea, me encantaría escucharlos.C - win32: AttachThreadInput & SetFocus, 64bit: ninguna pista
#include <stdio.h>
#include <windows.h>
int main()
{
//Structure prereqs for CreateProcess
STARTUPINFO siStartupInfo;
PROCESS_INFORMATION piProcessInfo;
memset(&siStartupInfo, 0, sizeof(siStartupInfo));
memset(&piProcessInfo, 0, sizeof(piProcessInfo));
siStartupInfo.cb = sizeof(siStartupInfo);
if(CreateProcess("c:\\windows\\notepad.exe", "", 0, 0, FALSE, CREATE_DEFAULT_ERROR_MODE, 0, 0, &siStartupInfo, &piProcessInfo) == FALSE)
{
GetLastError();
}
Sleep(1000);
//Target thread, I can't seem to get this to return anything !0
DWORD dwTargetThread = GetWindowThreadProcessId(piProcessInfo.hProcess,NULL);
//For example:
//if(dwTargetThread == 0) return -1;
//Print debugging info
if (GetCurrentThreadId() == dwTargetThread) return -1; else printf("\nMy thread: %u\n\npiProcessInfo.hThread: %u\n\nDWORD dwTargetThread: %u\n\nunsigned int dwTargetThread: %u", GetCurrentThreadId(), piProcessInfo.hThread,dwTargetThread, GetWindowThreadProcessId(piProcessInfo.hProcess,NULL));
//I've tried using piProcessInfo.hThread for AttachTo but I can't cast it to a DWORD as it's 64bit
AttachThreadInput(GetCurrentThreadId(),dwTargetThread,TRUE);
printf("\n\nAttached...\n");
Sleep(1000);
//Set the focus & bring to foreground
SetFocus(piProcessInfo.hProcess);
printf("Focus set...\n");
Sleep(1000);
SetForegroundWindow(piProcessInfo.hProcess);
printf("Brought to foreground...\n");
Sleep(1000);
//I know I shouldn't use PostMessage for keyboard input but it's just for the example
PostMessage(piProcessInfo.hProcess, WM_CHAR, 'g', 0);
printf("Message queued\n");
//No better than SetForegroundWindow:
//SetWindowPos(piProcessInfo.hProcess, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
}
¿Está seguro de que la llamada 'CreateProcess()' es exitosa? Todo parece depender de esto y su código hace lo mismo (aparte de la llamada 'GetLastError()') de cualquier manera. – MatthewD
¿Qué devuelve 'GetLastError()' después de su llamada a 'GetWindowThreadProcessId()'? Vea el comentario inferior en esta página: http://msdn.microsoft.com/en-us/library/windows/desktop/ms633522%28v=vs.85%29.aspx – MatthewD
Sí, 'CreateProcess()' es correcto. El Bloc de notas se abre perfectamente y SendInput funciona si lo traigo al primer plano manualmente. 'GetLastError()' devuelve nulo después de 'GetWindowThreadProcessId (piProcessInfo.hProcess, NULL);' – John