Hi all...HAPPY NEW YEAR.
I've been having alot of problems with calling SDK funtions. Is there any resources that clarifies the funtion parameters and how to configure them in labview.
found this link These are the some of the dll's I need to call.
One of the things I'm tring to do is find USB devices. The first thing I need to do;
-call the SetupDiGetClassDevs which is in the setupapi,dll. see link
SetupDiGetClassDevs returns a handle to a device information set that contains all installed devices that matched the supplied parameters.
Depending what I set for parameters i can get imformation on all devices connected to all ports.
My problem is don't know how the parameters are configured.
HDEVINFO
SetupDiGetClassDevs(
IN LPGUID ClassGuid, OPTIONAL (how do I configure each of the parmteters in labview)
IN PCTSTR Enumerator, OPTIONAL
IN HWND hwndParent, OPTIONAL
IN DWORD Flags
);
There are more call I need to make ,but need to get this imformation first.
Thanks