From: knopper on
Now i have the XXX_IOControl function, anybody of you can tell me how list
all the apdater the driver bounded. should i implement my own dispatcher
functionsfor this request or is there other easier way to do it ?

"MSenne" wrote:

> You should be exporting the function OK with those steps. With the DLL
> in Dependency Walker the second pane from the top on the right should
> list DriverEntry. If that pane is blank then you have a problem.
>
> I can't debug the device driver so I'm using logging to provide the
> info I need.
> -MSenne
>
>
From: MSenne on
The easiest way is to enumerate the subkeys of \Comm\Pass\
For instance, you may see that \Comm\Pass\Tiacxwln\ exists there,
indicating that the adapter referenced by \Comm\Tiacxwln\ has been
bound. In code you can check the binding list:
BINDING* g_pBindingList;
-MSenne