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?

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)

On 8/19/2010 11:14 AM, zhonghong200@163.com wrote:

WdfRequestSend(Request, WdfUsbTargetPipeGetIoTarget(pipe), WDF_NO_SEND_OPTIONS)

Google Is Your Friend

“WDF_NO_SEND_OPTIONS”:
http://www.microsoft.com/whdc/driver/tips/wdfmem.mspx

“WDF_NO_SEND_OPTIONS site:msdn.microsoft.com”:
msdn.microsoft.com/en-us/library/ff551136(VS.85).aspx
msdn.microsoft.com/en-us/library/ff548612(VS.85).aspx
msdn.microsoft.com/en-us/library/ff548604(VS.85).aspx

=> http://catb.org/esr/faqs/smart-questions.html

:frowning:

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