EventWriteReadStart(&activity, WdfIoQueueGetDevice(Queue), (ULONG)Length);
EventWriteReadFail(&activity, WdfIoQueueGetDevice(Queue), status);
EventWriteReadStop(&activity,
WdfIoQueueGetDevice(WdfRequestGetIoQueue(Request)),
bytesRead,
status,
usbCompletionParams->UsbdStatus);
I can not find the function prototype in wdk or msdn.
what’s the function purpose?
I think you listed 6 APIs. Which one?
d
dent from a phpne with no keynoard
-----Original Message-----
From: zhonghong200@163.com
Sent: August 19, 2010 12:10 AM
To: Windows System Software Devs Interest List
Subject: [ntdev] I look at the osrusbfx2,and can not find the function prototype of the follow func
EventWriteReadStart(&activity, WdfIoQueueGetDevice(Queue), (ULONG)Length);
EventWriteReadFail(&activity, WdfIoQueueGetDevice(Queue), status);
EventWriteReadStop(&activity,
WdfIoQueueGetDevice(WdfRequestGetIoQueue(Request)),
bytesRead,
status,
usbCompletionParams->UsbdStatus);
I can not find the function prototype in wdk or msdn.
what’s the function purpose?
—
NTDEV is sponsored by OSR
For our schedule of WDF, WDM, debugging and other seminars visit:
http://www.osr.com/seminars
To unsubscribe, visit the List Server section of OSR Online at http://www.osronline.com/page.cfm?name=ListServer
all of the api can not find the definition,and WDF_NO_SEND_OPTIONS not define in
WdfRequestSend(Request, WdfUsbTargetPipeGetIoTarget(pipe), WDF_NO_SEND_OPTIONS)
yes but I retrieve in google,but can not find anything useful. thank you
The definitions for KMDF functions appear in WDF.H (as opposed to WDM.H)… is that what you’re asking?? If you look at the bottom of the MSDN doc page on WdfRequestSend (for example) it tells you which file to include.
If that’s not your question, can you try to explain a bit more about your problem?
Peter
OSR