search for: loword

Displaying 16 results from an estimated 16 matches for "loword".

2002 Oct 18
0
(no subject)
...conf or .winerc file Use "printer=on" in the "[wine]" section to enable it. err:dc:CreateDCA no driver found for wineps.drv I click OK and get back to notepad, then I try File > Page Setup . . . I get a whole bunch of messages like: fixme:commdlg:PRINTDLG_PS_WMCommandA loword (lparam) 40, wparam 0x40471, lparam 00040028, STUB mostly. And then a Print dialog opens. Then I click the "printer . . ." button: fixme:commdlg:PRINTDLG_PS_WMCommandA loword (lparam) 40, wparam 0x30471, lparam 00040028, STUB mostly. fixme:commdlg:PRINTDLG_PS_WMCommandA loword (lp...
2002 Oct 18
5
Printing with wine
...Use "printer=on" in the "[wine]" section to enable it. err:dc:CreateDCA no driver found for wineps.drv I click OK and get back to notepad, then I try File > Page Setup . . . I get a whole bunch of messages like: fixme:commdlg:PRINTDLG_PS_WMCommandA loword (lparam) 40, wparam 0x40471, lparam 00040028, STUB mostly. And then a Print dialog opens. Then I click the "printer . . ." button: fixme:commdlg:PRINTDLG_PS_WMCommandA loword (lparam) 40, wparam 0x30471, lparam 00040028, STUB mostly. fixme:comm...
2001 May 05
1
fix for oggdrop disappearing window
Hi, I don't know if this problem has been looked at yet. The latest version of oggdrop I found was at http://www.vorbis.com/files/beta4/windows/oggdrop-1.0beta4.zip. If you whip the window quickly from right to left, the client mouse coordinate in WM_MOUSEMOVE *can* be negative and so the LOWORD and HIWORD macros will cast the mouse coordinates to insanely high 64K-ish values. Then the SetWindowPos moves the window into lala land never to be seen again. I don't think windows should ever give you a neg client coordinate, but it does (maybe it's a win2k thing). The attached patch...
2011 Mar 10
2
[PATCH 11/21] Staging: hv: Make vmbus driver a platform pci driver
...icrosoft_hv_dmi_table); -static int __init vmbus_init(void) + +static int __devinit hv_pci_probe(struct pci_dev *pdev, + const struct pci_device_id *ent) { - DPRINT_INFO(VMBUS_DRV, - "Vmbus initializing.... current log level 0x%x (%x,%x)", - vmbus_loglevel, HIWORD(vmbus_loglevel), LOWORD(vmbus_loglevel)); - /* Todo: it is used for loglevel, to be ported to new kernel. */ + int err; - if (!dmi_check_system(microsoft_hv_dmi_table)) - return -ENODEV; + hv_pci_dev = pdev; - return vmbus_bus_init(); -} + err = pci_enable_device(pdev); + if (err) + return err; -static void __exit...
2011 Mar 10
2
[PATCH 11/21] Staging: hv: Make vmbus driver a platform pci driver
...icrosoft_hv_dmi_table); -static int __init vmbus_init(void) + +static int __devinit hv_pci_probe(struct pci_dev *pdev, + const struct pci_device_id *ent) { - DPRINT_INFO(VMBUS_DRV, - "Vmbus initializing.... current log level 0x%x (%x,%x)", - vmbus_loglevel, HIWORD(vmbus_loglevel), LOWORD(vmbus_loglevel)); - /* Todo: it is used for loglevel, to be ported to new kernel. */ + int err; - if (!dmi_check_system(microsoft_hv_dmi_table)) - return -ENODEV; + hv_pci_dev = pdev; - return vmbus_bus_init(); -} + err = pci_enable_device(pdev); + if (err) + return err; -static void __exit...
2019 Mar 29
0
Wine release 4.5
...This in d3dx_effect_Clone(). d3dx9: Move flags out of struct d3dx9_base_effect. d3dx9: Get rid of struct d3dx9_base_effect. d3dx9: Secure against unsafe iface to COM object transitions. d3d9/tests: Remove redundant not-NULL checks (coccinellery). dmcompos: Use HIWORD / LOWORD instead of open coding them. dmscript: Use HIWORD / LOWORD instead of open coding them. dmusic: Use HIWORD / LOWORD instead of open coding them. dmusic: Use dump_DMUS_OBJECTDESC() instead of open coding it. dswave: Use HIWORD / LOWORD instead of open coding them. mstas...
2011 Feb 11
0
[PATCH 3/3]:Staging: hv: Remove osd layer
...h" #include "vmbus_channel_interface.h" diff --git a/drivers/staging/hv/logging.h b/drivers/staging/hv/logging.h index 20d4d12..1799951 100644 --- a/drivers/staging/hv/logging.h +++ b/drivers/staging/hv/logging.h @@ -25,6 +25,9 @@ #ifndef _LOGGING_H_ #define _LOGGING_H_ +#define LOWORD(dw) ((unsigned short)(dw)) +#define HIWORD(dw) ((unsigned short)(((unsigned int) (dw) >> 16) & 0xFFFF)) + /* #include <linux/init.h> */ /* #include <linux/module.h> */ diff --git a/drivers/staging/hv/netvsc.c b/drivers/staging/hv/netvsc.c index 7233564..fa46a7e 100644 ---...
2011 Feb 11
0
[PATCH 3/3]:Staging: hv: Remove osd layer
...h" #include "vmbus_channel_interface.h" diff --git a/drivers/staging/hv/logging.h b/drivers/staging/hv/logging.h index 20d4d12..1799951 100644 --- a/drivers/staging/hv/logging.h +++ b/drivers/staging/hv/logging.h @@ -25,6 +25,9 @@ #ifndef _LOGGING_H_ #define _LOGGING_H_ +#define LOWORD(dw) ((unsigned short)(dw)) +#define HIWORD(dw) ((unsigned short)(((unsigned int) (dw) >> 16) & 0xFFFF)) + /* #include <linux/init.h> */ /* #include <linux/module.h> */ diff --git a/drivers/staging/hv/netvsc.c b/drivers/staging/hv/netvsc.c index 7233564..fa46a7e 100644 ---...
2011 Feb 22
4
[PATCH 1/6] Staging: hv: vmbus_drv.c Replaced DPRINT with native pr_XXX
...dev_name(child_device)); ret = -1; } } @@ -1086,10 +1020,8 @@ MODULE_DEVICE_TABLE(dmi, microsoft_hv_dmi_table); static int __init vmbus_init(void) { - DPRINT_INFO(VMBUS_DRV, - "Vmbus initializing.... current log level 0x%x (%x,%x)", - vmbus_loglevel, HIWORD(vmbus_loglevel), LOWORD(vmbus_loglevel)); - /* Todo: it is used for loglevel, to be ported to new kernel. */ + pr_info("%s: initializing Version %s. Supported Hyper-V Rev %d.", + VMBUS_MOD, HV_DRV_VERSION, VMBUS_REVISION_NUMBER); if (!dmi_check_system(microsoft_hv_dmi_table)) return -ENODEV; @@ -1100,7 +...
2011 Feb 22
4
[PATCH 1/6] Staging: hv: vmbus_drv.c Replaced DPRINT with native pr_XXX
...dev_name(child_device)); ret = -1; } } @@ -1086,10 +1020,8 @@ MODULE_DEVICE_TABLE(dmi, microsoft_hv_dmi_table); static int __init vmbus_init(void) { - DPRINT_INFO(VMBUS_DRV, - "Vmbus initializing.... current log level 0x%x (%x,%x)", - vmbus_loglevel, HIWORD(vmbus_loglevel), LOWORD(vmbus_loglevel)); - /* Todo: it is used for loglevel, to be ported to new kernel. */ + pr_info("%s: initializing Version %s. Supported Hyper-V Rev %d.", + VMBUS_MOD, HV_DRV_VERSION, VMBUS_REVISION_NUMBER); if (!dmi_check_system(microsoft_hv_dmi_table)) return -ENODEV; @@ -1100,7 +...
2009 May 22
0
Wine release 1.1.22
...tubs for Seek and CopyTo. ole32: Add proxies and stubs for OpenStream and EnumElements. ole32: Add proxies and stubs for ReadAt and WriteAt. ole32: Add proxies and stubs for FillAppend and FillAt. msctf/tests: Fix a compiler warning. ole32/tests: Show that it's the loword of the separate flag parameter that determines the marshalling context. ole32: Implement the WdtpInterfacePointer marshal functions. ole32/tests: Add tests for STGMEDIUM marshalling with a non-NULL pUnkForRelease. ole32: Add support for marshalling pUnkForRelease. ole32/test...
2008 Jul 25
0
Wine release 1.1.2
...r' characters. msxml3/tests: Add test for parsing from IStream. msxml3/tests: Add test for parsing document with '\r' characters. msxml3: Fix for accessing uninitialized memory. Reece Dunn (13): uxtheme/tests: Use HRESULT_FROM_WIN32 to check the error codes, not LOWORD. shell32: Do not use a fixed path in the shelllink tests. shell32: Make the tests build with the Vista SDK. oleaut32: Fix the vartype tests on Vista. shell32/tests: Vista returns E_INVALIDARG if the path sent to SetPath is invalid. comctl32: Fixed the MRU tests on Vist...
2008 Dec 20
0
Wine release 1.1.11
...ociateContextEx. imm32: Implement W/A handling in ImmEscape. user32: Implement handling of WM_INPUTLANGCHANGE. user32: Proper handling of WM_INPUTLANGCHANGEREQUEST. msi: EndDialog with Ignore should not be an error. x11drv: If a keyboard layout is an IME only check the loword when comparing to the x11 keyboard layout. x11drv: Allow ActivateKeyboardLayout to set the keyboard for the thread and GetKeyboardLayout to return the stored keyboard. user32: Remove the driver call for GetKeyboardLayoutList and instead populate from the registry. msi: Fix some NU...
2008 May 02
0
Wine release 0.9.61
...when using RichEdit. winhelp: Added support for relative offsets in richedit rendered pages. Erik de Castro Lopo (5): include: Fix "warning: cast from pointer to integer of different size". user32/tests: Use SetWindowLongPtr instead of SetWindowLong. crypt32: Use LOWORD on LPCSTR type instead of casting to int. ntdll: Win64 fix for get_pointer_obfuscator. dbghelp: Fix pointer cast. Frans Kool (2): winecfg: Added missing Dutch translation. start: Fixed Dutch translations. Gerald Pfeifer (1): widl: Fix syntax to also work with older v...
2011 Mar 15
16
[PATCH 00/12] Staging: hv: Cleanup vmbus driver - Phase II
This patch-set fixes the following issues in the vmbus driver (vmbus_drv.c): Make vmbus driver a platform pci device and cleanup root device management and irq allocation (patches 1/12 through 3/12): 1) Make vmbus driver a platform pci driver. 2) Cleanup root device management. 3) Leverage the pci model for allocating irq. General cleanup of vmbus driver (patches 4/12 though 12/12): 1)
2011 Mar 15
16
[PATCH 00/12] Staging: hv: Cleanup vmbus driver - Phase II
This patch-set fixes the following issues in the vmbus driver (vmbus_drv.c): Make vmbus driver a platform pci device and cleanup root device management and irq allocation (patches 1/12 through 3/12): 1) Make vmbus driver a platform pci driver. 2) Cleanup root device management. 3) Leverage the pci model for allocating irq. General cleanup of vmbus driver (patches 4/12 though 12/12): 1)