search for: minidriver

Displaying 9 results from an estimated 9 matches for "minidriver".

2016 Oct 14
0
Wine release 1.9.21
The Wine development release 1.9.21 is now available. What's new in this release (see below for details): - Initial version of the HID minidriver. - Support for lists in the RichEdit control. - System tray improvements. - Various bug fixes. The source is available from the following locations: http://dl.winehq.org/wine/source/1.9/wine-1.9.21.tar.bz2 http://mirrors.ibiblio.org/wine/source/1.9/wine-1.9.21.tar.bz2 Binary packages f...
2004 Mar 17
2
access 2003 clients can't print to samba 3 server ( access 2000 can)
...unds more than a little suspicious. > What sort of setup do you have? > Samba ==> CUPS? Yes > Raw print queue or the CUPS driver? Raw, w2k driver installed from print$ share. This is not a manufacturer's driver with all the bell's and whistles either, just simple default w2k minidriver. > I have had some issues printing reports from Access to some of our > printers that claim to be PCL6 compatible ( and have PCL6 drivers ), but > only work with the PCL5 drivers. > > What happens when you try to print? Here's the latest. When I have some samba printers insta...
2015 Oct 16
0
Wine release 1.7.53
...ound feature input flags more apparent. hidclass.sys: Make sure we pass in the index not a pointer to the index. hidclass.sys: Add a processing thread for HID devices. hidclass.sys: Stub to handle IRP_MJ_WRITE on HID devices. hidclass.sys: Implement sending IRP_MJ_PNP to the minidriver. hidclass.sys: Implement sending IRP_MJ_POWER to the minidriver. hidclass.sys: Implement IOCTL_GET(SET)_NUM_DEVICE_INPUT_BUFFERS. Austin English (6): kernel32: Add a stub for GetCurrentProcessorNumberEx. fltmgr.sys: Add a stub driver. kernel32: Add a stub for CancelSy...
2017 Jan 24
0
Wine release 2.0
...iler supports "midl_pragma warning" directives. - Cross-compilation with the Mingw-w64 Clang and ARM toolchains is supported. *** Kernel - A new driver architecture is in place for supporting HID devices. This follows the Windows model, with platform-specific bus drivers and HID minidrivers. It will be used in future releases to unify support for HID devices, and potentially also for USB device support. - Loading multiple kernel drivers inside the same user-mode process is supported. This is used for HID drivers. - A directory cache is implemented, to allow returning files in...
2007 Jan 23
2
Voltage override in megatec and megatec-over-usb [was: Re: nut-2.0.5 megatec + Online Xanto]
On 1/23/07, Henning Brauer <hb-nut@bsws.de> wrote: > good new first: the megatec driverin 2.0.5 now works with the Online > Xanto S3000R here - well, for the very basics. > > the UPS has NO way ofidentifying itself. It also does not respond to > the power ratings query ("F"). I previously used a hacked up fentonups > driver. This means the driver cannot figure out
2007 Feb 01
2
Re: [Nut-upsuser] Ablerex 625L USB version
...t; + { > + .name = "usb", > + .open = &comm_usb_open, > + .close = &comm_usb_close, > + .send = &comm_usb_send, > + .recv = &comm_usb_recv > + }; > + > + megatec_comm_t *comm = & comm_usb; > + > + > + /************** minidrivers go after this point **************************/ > + > + > + /* > + Agiler seraial-to-usb device. > + > + Protocol was reverse-engineered from Windows driver > + HID tables are complitely bogus > + Data is transferred out as one 8-byte packet with report ID 0...
2018 Aug 17
0
Wine release 3.14
...version 2.4. xaudio2: IXAPO::Reset returns void. dinput: Use vid/pid for first chunk of product guid on OSX, too. dinput: Fix mac build. Andrey Gusev (1): api-ms-win-devices-config-l1-1-0: Add dll. Aric Stewart (1): hidclass.sys: Unload all devices before unloading a minidriver. Aurimas FiĊĦeras (1): po: Update Lithuanian translation. Austin English (1): setupapi: Set LastError on success in SetupInstallFromInfSectionW. Charles Davis (1): libwine: Use getsegmentdata(3) on Mac OS to find the end of the __TEXT segment. Connor McAdams (2): wined3d:...
2019 Jun 10
0
Wine release 4.10
...upport aggregation in the base transform filter. qedit/samplegrabber: Use BaseFilterImpl_FindPin(). qcap/avico: Use BaseFilterImpl_QueryFilterInfo(). qcap/avico: Use BaseFilterImpl_QueryVendorInfo(). hidclass.sys: Use PDRIVER_ADD_DEVICE. hidclass.sys: Get rid of unused minidriver parameter to HID_DeleteDevice(). ntoskrnl.exe: Dispatch user IRPs to the top of the device stack. ntoskrnl.exe: Send PnP IRPs to the top of the device stack. ntoskrnl.exe: Implement automatically generated device names. strmbase: Add a cached implementation of IDispatch and...
2006 Dec 05
3
megatec over USB - new driver patch
...+ return (dst-buffer); +} + +static megatec_comm_t comm_usb = +{ + .name = "usb", + .open = &comm_usb_open, + .close = &comm_usb_close, + .send = &comm_usb_send, + .recv = &comm_usb_recv +}; + +megatec_comm_t *comm = & comm_usb; + + +/************** minidrivers go after this point **************************/ + + +/* + Agiler seraial-to-usb device. + + Protocol was reverse-engineered from Windows driver + HID tables are complitely bogus + Data is transferred out as one 8-byte packet with report ID 0 + Data comes in as 6 8-byte reports per l...