it ain't hitting the breakpoints
I'm trying to debug a DLL btw
actually I'm trying to debug a thread the DLL spawns inside the process after it gets injected into it
launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "debug internal",
"type": "lldb",
"request": "attach",
"program": "C:\\Program Files\\WindowsApps\\Microsoft.WindowsNotepad_11.2508.38.0_x64__8wekyb3d8bbwe\\Notepad.exe",
"args": [],
"cwd": "${workspaceRoot}",
"initCommands": [
"settings set target.x86-disassembly-flavor intel"
]
}
]
}
codelldb installed
Zig extention installed