Jungo WinDriver  
Official Documentation

◆ WD_Sleep

#define WD_Sleep (   h,
  pSleep 
)     WD_FUNCTION(IOCTL_WD_SLEEP, h, pSleep, sizeof(WD_SLEEP), FALSE)

Delays execution for a specific duration of time.

Parameters
[in]hHandle to WinDriver's kernel-mode driver as received from WD_Open()
[in]pSleepPointer to a sleep information structure
Returns
Returns WD_STATUS_SUCCESS (0) on success, or an appropriate error code otherwise
Remarks
Example usage: to access slow response hardware.
BZERO(slp);
slp.dwMicroSeconds = 200;
WD_Sleep(hWD, &slp)
#define WD_Sleep(h, pSleep)
Delays execution for a specific duration of time.
Definition: windrvr.h:2680
#define BZERO(buf)
Definition: windrvr.h:1548

Definition at line 2680 of file windrvr.h.