Jungo WinDriver  
Official Documentation

◆ WD_DebugAdd

#define WD_DebugAdd (   h,
  pDebugAdd 
)     WD_FUNCTION(IOCTL_WD_DEBUG_ADD, h, pDebugAdd, sizeof(WD_DEBUG_ADD), FALSE)

Sends debug messages to the debug log.

Used by the driver code.

Parameters
[in]hHandle to WinDriver's kernel-mode driver as received from WD_Open().
[in]pDebugAddPointer to an additional debug information structure
Returns
Returns WD_STATUS_SUCCESS (0) on success, or an appropriate error code otherwise
BZERO(add);
sprintf(add.pcBuffer, "This message will be displayed in "
"the Debug Monitor\n");
WD_DebugAdd(hWD, &add);
DWORD dwSection
Definition: windrvr.h:1022
DWORD dwLevel
Definition: windrvr.h:1021
CHAR pcBuffer[256]
Definition: windrvr.h:1020
@ D_WARN
Definition: windrvr.h:958
@ S_MISC
Definition: windrvr.h:971
#define BZERO(buf)
Definition: windrvr.h:1548
#define WD_DebugAdd(h, pDebugAdd)
Sends debug messages to the debug log.
Definition: windrvr.h:1892

Definition at line 1892 of file windrvr.h.