/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
src/tests/cmdline_attach/target.cpp
17 строк
335 B
Duncan Ogilvie
Add reproduction for failing to attach
16 июл 2026, 18:04
16 июл 2026, 18:04
d1216c5
Код
Авторство
О чём код?
#include <windows.h> #include <cstdio> extern "C" __declspec(dllexport) void CmdlineAttachTargetMarker() { } int main() { std::printf("ready %lu\n", GetCurrentProcessId()); std::fflush(stdout); // Keep the process alive until the Python driver releases stdin. (void)std::getchar(); return 0; }