Meaning of Setting SetupAPI Logging Levels special flag 0x80000000

Hi,

what exactly is meant by a debugger:

http://207.46.16.248/en-us/library/ff550808(VS.85).aspx

Special Flags:

0x80000000 = Send the output to the debugger as well as to the log file.

Can the Deugger be any application that loops with WaitForDebugEvent/ContinueDebugEvent or is it some other IPC?

best

Kerem

wrote in message news:xxxxx@ntdev…
> Hi,
>
> what exactly is meant by a debugger:
>
> http://207.46.16.248/en-us/library/ff550808(VS.85).aspx
>
> Special Flags:
>
> 0x80000000 = Send the output to the debugger as well as to the log file.
>
> Can the Deugger be any application that loops with
> WaitForDebugEvent/ContinueDebugEvent or is it some other IPC?
>
> best
>
> Kerem

It is kernel debugger. DbgPrint(Ex) can be called from user mode.

–pa