public LstK(int Flags, ref KLST_PATTERN_MATCH PatternMatch) { if (!AllKFunctions.LstK_InitEx(out mHandleStruct, Flags, ref PatternMatch)) { throw new Exception(); } }
public UsbK(KLST_DEVINFO_HANDLE DevInfo) { var success = AllKFunctions.LibK_LoadDriverAPI(out driverAPI, DevInfo.DriverID); if (!success) { throw new Exception(); } success = driverAPI.Init(out mHandleStruct, DevInfo); if (!success) { throw new Exception(); } }
public virtual bool MoveNext(out KLST_DEVINFO_HANDLE DeviceInfo) => AllKFunctions.LstK_MoveNext(mHandleStruct, out DeviceInfo);