Debug view (dbgView) doesn't capture OutputDebugString

288 Views Asked by At

I have this very simple program (a test one), to test the function OutputDebugString.

#include <Windows.h>
#include <stdio.h>
#include <winternl.h>

int main()
{
    OutputDebugStringA("Hello string");
    return 0;
}

However, when I run it and open dbgView, it won't show up there. I ran both programs as administrator. I have no clue on what the problem might be. Help

0

There are 0 best solutions below