Wine-Devel
By thread
wine-devel@list.winehq.org
By month
Messages by month
- ----- 2026 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
December 2005
- 146 participants
- 843 messages
Re: Stubbed additional VGA registers
by Marcus Meissner
On Fri, Dec 09, 2005 at 04:39:50AM -0500, Jeremiah Flerchinger wrote:
> Subject: [PATCH] Stubbed additional VGA register functionality:
>
> Modified "dlls/winedos/vga.c" with additional comments on VGA registers.
> Added stubs for a large number of output registers and specific offsets.
Please do some indentation ....
Ciao, Marcus
> ---
>
> dlls/winedos/vga.c | 418
> +++++++++++++++++++++++++++++++++++++++++++++++-----
> 1 files changed, 379 insertions(+), 39 deletions(-)
>
> 754a4435ac517a77cc1e14ee025c26cb086ef56e
> diff --git a/dlls/winedos/vga.c b/dlls/winedos/vga.c
> index 9eb7447..cb7e866 100644
> --- a/dlls/winedos/vga.c
> +++ b/dlls/winedos/vga.c
> @@ -1,7 +1,7 @@
> /*
> * VGA hardware emulation
> *
> - * Copyright 1998 Ove K�en (with some help from Marcus Meissner)
> + * Copyright 1998 Ove K�en (with some help from Marcus Meissner)
> *
> * This library is free software; you can redistribute it and/or
> * modify it under the terms of the GNU Lesser General Public
> @@ -1079,31 +1079,382 @@ static PALETTEENTRY paldat;
>
> void VGA_ioport_out( WORD port, BYTE val )
> {
> - switch (port) {
> - case 0x3c0:
> - if (vga_address_3c0)
> - vga_index_3c0 = val;
> - else
> - FIXME("Unsupported index, register 0x3c0: 0x%02x (value 0x%02x)\n",
> - vga_index_3c0, val);
> - vga_address_3c0 = !vga_address_3c0;
> - break;
> - case 0x3c4:
> - vga_index_3c4 = val;
> - break;
> - case 0x3c5:
> - switch(vga_index_3c4) {
> - case 0x04: /* Sequencer: Memory Mode Register */
> - if(vga_fb_depth == 8)
> - VGA_SetWindowStart((val & 8) ? 0 : -1);
> - else
> - FIXME("Memory Mode Register not supported in this mode.\n");
> - break;
> - default:
> - FIXME("Unsupported index, register 0x3c4: 0x%02x (value 0x%02x)\n",
> + switch (port)
> + {
> + /*
> + * General Registers
> + */
> + case 0x3c2: /* Miscellaneous output */
> + /*
> + * [7][6][5][4][3][2][1][0]
> + *
> + * [7] - vertical sync polarity
> + * [6] - horizontal sync polarity
> + * [5] - page bit for odd/even mode: 0=low, 1=high (for diagnostic use)
> + * [4] - 0 (RESERVED)
> + * [2][3] - clock select bits:
> + * 00=25.175 MHz clock VGA, 14 MHz EGA
> + * 01=28.322 MHz clock VGA, 16 MHz EGA
> + * 10=external clock selected
> + * 11=reserved
> + * [1] - RAM enable/disable: 0=video RAM disabled, 1=video RAM enabled
> + * [0] - I/O address select bit: 0=0x3b? (MDA compatable), 1=0x3d? (CGA
> compatible)
> + */
> + FIXME(":CRT_Controller_Register:Misc_output Unsupported VGA register:
> 0x%04x (value 0x%02x)\n", port, val);
> + break;
> + case 0x3ba: /* Feature Control - MDA compatible */
> + case 0x3da: /* Feature Control - CGA compatible */
> + FIXME(":CRT_Controller_Register:Feature_Control Unsupported VGA
> register: 0x%04x (value 0x%02x)\n", port, val);
> + break;
> + case 0x3c3: /* Video Subsystem enable */
> + FIXME(":CRT_Controller_Register:Video_Subsystem Unsupported VGA
> register: 0x%04x (value 0x%02x)\n", port, val);
> + break;
> + /*
> + * CRT Controller Registers
> + */
> + case 0x3b4: /* Offset Value Address - MDA compatible */
> + case 0x3d4: /* Offset Value Address - CGA compatible */
> + vga_index_3d4 = val;
> + break;
> + case 0x3b5: /* CRT Controller - MDA compatible */
> + case 0x3d5: /* CRT Controller - CGA compatible */
> + switch(vga_index_3d4)
> + {
> + case 0: /* Total horizontal chars minus 5 default and minus 2 in EGA
> compatability */
> + FIXME(":CRT_Controller_Register:Horiz_Chars Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 1: /* Horizontal display end characters minus 1 */
> + FIXME(":CRT_Controller_Register:Horiz_End Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 2: /* Start Horizontal Blanking */
> + FIXME(":CRT_Controller_Register:Horiz_Blank_Start Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 3: /* End Horizontal Blanking */
> + FIXME(":CRT_Controller_Register:Horiz_Blank_End Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 4: /* Start Horizontal retrace pulse */
> + FIXME(":CRT_Controller_Register:Horiz_Retrace_Start Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 5: /* Stop Horizontal retrace pulse */
> + FIXME(":CRT_Controller_Register:Horiz_Retrace_Stop Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 6: /* Total vertical scan lines */
> + FIXME(":CRT_Controller_Register:Vert_Lines Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 7: /* CRTC overflow */
> + FIXME(":CRT_Controller_Register:CRTC overflow Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 8: /* Preset row scan */
> + FIXME(":CRT_Controller_Register:Row_Scan Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 9: /* Maximum scan line */
> + FIXME(":CRT_Controller_Register:Max_Scan Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 10: /* Scan line for cursor start */
> + /*
> + * [7][6][5][4][3][2][1][0]
> + *
> + * [7] - Cursor ON/OFF Control: 1=cursor off, 0=cursor on
> + * [6][5] - Possibly 00 ?
> + * [4][3][2][1] - scan row for cursor start
> + */
> + FIXME(":CRT_Controller_Register:Cursor_Start Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 11: /* Scan line for cursor end */
> + /*
> + * [7][6][5][4][3][2][1][0]
> + *
> + * [7] - 0
> + * [6][5] - Cursor Skew Control: cursor is moved right 0 to 3 positions
> + * [4][3][2][1] - scan row for cursor end
> + */
> + FIXME(":CRT_Controller_Register:Cursor_End Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 12: /* Video buffer start address, high byte */
> + FIXME(":CRT_Controller_Register:Video_Buffer_High Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 13: /* Video buffer start address, low byte */
> + FIXME(":CRT_Controller_Register:Video_Buffer_Low Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 14: /* Cursor location, high-order byte of cursor address */
> + FIXME(":CRT_Controller_Register:Cursor_Pos_High Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 15: /* Cursor location, low-order byte of cursor address */
> + FIXME(":CRT_Controller_Register:Cursor_Pos_Low Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 16: /* Vertical retrace start */
> + FIXME(":CRT_Controller_Register:Vert_Retrace_Start Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 17: /* Vertical retrace end */
> + FIXME(":CRT_Controller_Register:Vert_Retrace_End Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 18: /* Last scan line of vertical display */
> + FIXME(":CRT_Controller_Register:Last_Vert_Scan Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 19: /* Additional word offset to next logical line */
> + FIXME(":CRT_Controller_Register:Next_Line_Offset Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 20: /* Scan line for underline character */
> + FIXME(":CRT_Controller_Register:Underline_Scan Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 21: /* Scan line to start vertical blanking */
> + FIXME(":CRT_Controller_Register:Vert_Blank_Scan_Start Unsupported
> index: register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 22: /* Scan line to end vertical blanking */
> + FIXME(":CRT_Controller_Register:Vert_Blank_Scan_End Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 23: /* CRTC mode control */
> + FIXME(":CRT_Controller_Register:CRTC_Mode_Control Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + case 24: /* Line compare register */
> + FIXME(":CRT_Controller_Register:Line_Comp_Reg Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + break;
> + default:
> + FIXME(":CRT_Controller_Register Unsupported index: register 0x%04x,
> index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3d4, val);
> + }
> + break;
> + /*
> + * Sequencer Registers
> + */
> + case 0x3c4: /* Offset Value Address */
> + vga_index_3c4 = val;
> + break;
> + case 0x3c5: /* Sequencer */
> + switch(vga_index_3c4)
> + {
> + case 0x00: /* Synchronous or Asynchronous reset */
> + FIXME(":Sequencer_Register:Reset Unsupported index: register 0x%04x,
> index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3c4, val);
> + break;
> + case 0x01: /* Clocking Mode */
> + FIXME(":Sequencer_Register:Clocking_Mode Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3c4, val);
> + break;
> + case 0x02: /* Map Mask */
> + /*
> + * [7][6][5][4][3][2][1][0]
> + *
> + * [7][6][5][4] - 0000
> + * [3] - 1=map 3 enabled (intensity plane)
> + * [2] - 1=map 2 enabled (red plane)
> + * [1] - 1=map 1 enabled (green plane)
> + * [0] - 1=map 0 enabled (blue plane)
> + */
> + FIXME(":Sequencer_Register:Map_Mask Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3c4, val);
> + break;
> + case 0x03: /* Character Map Select */
> + /*
> + * [7][6][5][4][3][2][1][0]
> + *
> + * [7][6] - 00
> + * [5][3][2] - Map A Select: 000=map 0, 001=map 1, ... , 111=map 7
> + * [4][1][0] - Map A Select: 000=map 0, 001=map 1, ... , 111=map 7
> + */
> + FIXME(":Sequencer_Register:Map_Mask Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3c4, val);
> + break;
> + case 0x04: /* Sequencer: Memory Mode Register */
> + /*
> + * [7][6][5][4][3][2][1][0]
> + *
> + * [7][6][5][4] - 0000
> + * [3] - Access Mode Select:
> + * 1=enable bits 0 and 1 of the Char Map Select Register
> + * 0=enable sequential access of all maps (256-color modes only)
> + * [2] - Memory Addressing Mode Select:
> + * 1=sequential addressing mode
> + * 0=even addresses to maps 0 and 2
> + * odd addresses to maps 1 and 3
> + * [1] - extended memory status (always 1)
> + * [0] - 0
> + */
> + if(vga_fb_depth == 8)
> + VGA_SetWindowStart((val & 8) ? 0 : -1);
> + else
> + FIXME(":Sequencer_Register:Memory_Mode not supported in this mode.\n");
> + break;
> + default:
> + FIXME("Unsupported index, register 0x3c4: 0x%02x (value 0x%02x)\n",
> vga_index_3c4, val);
> - }
> - break;
> + }
> + break;
> + /*
> + * Graphics Controller Registers
> + */
> + case 0x3ce: /* Offset Value Address */
> + vga_index_3ce = val;
> + break;
> + case 0x3cf: /* Graphics Controller */
> + switch(vga_index_3ce)
> + {
> + case 0x00: /* Set/Reset */
> + /*
> + * [7][6][5][4][3][2][1][0]
> + *
> + * [7][6][5][4] - 0000
> + * [3] - 1=reset map 3 (intensity plane)
> + * [2] - 1=reset map 2 (red plane)
> + * [1] - 1=reset map 1 (green plane)
> + * [0] - 1=reset map 0 (blue plane)
> + */
> + FIXME(":Sequencer_Register:Set_Reset Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3ce, val);
> + break;
> + case 0x01: /* Enable Set/Reset */
> + /*
> + * [7][6][5][4][3][2][1][0]
> + *
> + * [7][6][5][4] - 0000
> + * [3] - 1=enable map 3 (intensity plane)
> + * [2] - 1=enable map 2 (red plane)
> + * [1] - 1=enable map 1 (green plane)
> + * [0] - 1=enable map 0 (blue plane)
> + */
> + FIXME(":Sequencer_Register:Set_Reset_Enable Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3ce, val);
> + break;
> + case 0x02: /* Color compare for read mode 1 operation */
> + /*
> + * [7][6][5][4][3][2][1][0]
> + *
> + * [7][6][5][4] - 0000
> + * [3] - 1=enable map 3 (intensity plane)
> + * [2] - 1=enable map 2 (red plane)
> + * [1] - 1=enable map 1 (green plane)
> + * [0] - 1=enable map 0 (blue plane)
> + */
> + FIXME(":Sequencer_Register:Set_Reset Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3ce, val);
> + break;
> + case 0x03: /* Data rotate */
> + /*
> + * [7][6][5][4][3][2][1][0]
> + *
> + * [7][6][5] - 000
> + * [4][3] - Logical operation select:
> + * 00 = data unmodified
> + * 01 = data ANDed
> + * 10 = data ORed
> + * 11 = data XORed
> + * [2][1][0] - Rotate count: counter (0 to 7) of the positions to
> rotate CPU data during memory write operations
> + */
> + FIXME(":Sequencer_Register:Data_Rotate Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3ce, val);
> + break;
> + case 0x04: /* Read operation map select */
> + /*
> + * [7][6][5][4][3][2][1][0]
> + *
> + * [7][6][5][4][3][2] - 000000
> + * [1][0] - Select Map Operation
> + * 00 = select map 0
> + * 01 = select map 1
> + * 10 = select map 2
> + * 11 = select map 3
> + */
> + FIXME(":Sequencer_Register:Read_Map_Select Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3ce, val);
> + break;
> + case 0x05: /* Select graphics mode */
> + /*
> + * [7][6][5][4][3][2][1][0]
> + *
> + * [7] - 0
> + * [6] - VGA 256-color mode select: 1 = enable 256-color mode, 0 = bit
> 5 controls loading of shift register
> + * [5] - Shift Mode Selector: 1 = shift mode for mode 4 & 5 (CGA
> compatible), 0 = normal shift mode
> + * [4] - Select odd/even mode: 1 = odd/even mode (CGA compatible), 0 =
> normal mode
> + * [3] - Read type: 0 = read data from Read Map Select Reg, 1 = compare
> results w/maps in Color Compare Reg
> + * [2] - 0
> + * [1][0] - Write Mode Select:
> + * 00 = select write mode 0
> + * 01 = select write mode 1
> + * 10 = select write mode 2
> + * 11 = select write mode 3
> + */
> + FIXME(":Sequencer_Register:Graphics_Mode Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3ce, val);
> + break;
> + case 0x06: /* Miscellaneous operations - usually controlled by BIOS
> mode change */
> + /*
> + * [7][6][5][4][3][2][1][0]
> + *
> + * [7][6][5][4] - 0000
> + * [3]2] - Memory Map Select
> + * 00 = 128K bytes at 0xa0000 (VGA_WINDOW_START)
> + * 01 = 64K bytes at 0xa0000
> + * 10 = 32K bytes at 0xb0000
> + * 11 = 32K bytes at 0xb8000 (VGA_AlphaBuffer)
> + * [1] - Odd/Even chaining mode select
> + * 1 = chain odd maps after even maps
> + * 0 = normal map chaining
> + * [0] - 1=don't compare map 0 (blue plane)
> + */
> + FIXME(":Sequencer_Register:Misc_Ops Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3ce, val);
> + break;
> + case 0x07: /* Read mode 1 color don't care */
> + /*
> + * [7][6][5][4][3][2][1][0]
> + *
> + * [7][6][5][4] - 0000
> + * [3] - 1=don't compare map 3 (intensity plane)
> + * [2] - 1=don't compare map 2 (red plane)
> + * [1] - 1=don't compare map 1 (green plane)
> + * [0] - 1=don't compare map 0 (blue plane)
> + */
> + FIXME(":Sequencer_Register:Mode1_Color_NoCare Unsupported index:
> register 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3ce, val);
> + break;
> + case 0x08: /* Bit mask */
> + FIXME(":Sequencer_Register:Bit_Mask Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3ce, val);
> + break;
> + default:
> + FIXME(":Graphics_Controller_Register Unsupported index: register
> 0x%04x, index 0x%02x (value 0x%02x)\n",
> + port, vga_index_3ce, val);
> + }
> + break;
> + /*
> + * Attribute Controller Registers
> + */
> + case 0x3c0:
> + if (vga_address_3c0)
> + vga_index_3c0 = val;
> + else
> + FIXME("Unsupported index, register 0x3c0: 0x%02x (value 0x%02x)\n",
> + vga_index_3c0, val);
> + vga_address_3c0 = !vga_address_3c0;
> + break;
> + /*
> + * Additional Palette Registers?
> + */
> case 0x3c8:
> palreg=val; palcnt=0; break;
> case 0x3c9:
> @@ -1113,20 +1464,9 @@ void VGA_ioport_out( WORD port, BYTE val
> palcnt=0;
> }
> break;
> - case 0x3ce:
> - vga_index_3ce = val;
> - break;
> - case 0x3cf:
> - FIXME("Unsupported index, register 0x3ce: 0x%02x (value 0x%02x)\n",
> - vga_index_3ce, val);
> - break;
> - case 0x3d4:
> - vga_index_3d4 = val;
> - break;
> - case 0x3d5:
> - FIXME("Unsupported index, register 0x3d4: 0x%02x (value 0x%02x)\n",
> - vga_index_3d4, val);
> - break;
> + /*
> + * Other Unsupported Registers
> + */
> default:
> FIXME("Unsupported VGA register: 0x%04x (value 0x%02x)\n", port, val);
> }
> --
> 0.99.9l
>
>
>
>
Dec. 9, 2005
Re: OpenGL regression
by Huw D M Davies
On Fri, Dec 09, 2005 at 02:25:15PM +0000, Huw D M Davies wrote:
> Looking at libGL, it uses the X_GLXVendorPrivateWithReply request with
> the vendor code X_GLXvop_GetDrawableAttributesSGIX when the server
> version is < 1.3 (otherwise it uses the X_GLXGetDrawableAttributes
> request). Mesa doesn't support this vendor code so the request fails.
> You probably need to catch this error and take the appropiate action
> if it fails.
Sorry, this wasn't very clear. I meant to say that this is what libGL
does when glXQueryDrawable is called.
Huw.
--
Huw Davies
huw(a)codeweavers.com
Dec. 9, 2005
[winecfg] Dutch resources (RESEND)
by Paul Vriens
Hi,
anything wrong with this one ? :
http://www.winehq.org/pipermail/wine-patches/2005-December/022740.html
I'm just asking as the first version of the patch wasn't applied either.
I've just started using git, so if I'm doing something wrong in that
respect, let me know.
Cheers,
Paul.
Dec. 9, 2005
Re: OpenGL regression
by Huw D M Davies
On Fri, Dec 09, 2005 at 12:26:43AM +0100, Raphael wrote:
>
> For Stefan problem i don't understand how it can fail :(
My guess is Stefan's XServer is glx version 1.2 (Stefan glxinfo will
comfirm this).
Looking at libGL, it uses the X_GLXVendorPrivateWithReply request with
the vendor code X_GLXvop_GetDrawableAttributesSGIX when the server
version is < 1.3 (otherwise it uses the X_GLXGetDrawableAttributes
request). Mesa doesn't support this vendor code so the request fails.
You probably need to catch this error and take the appropiate action
if it fails.
Huw.
--
Huw Davies
huw(a)codeweavers.com
Dec. 9, 2005
Crashes with TPB reader
by Pierre Ossman
This is partly a user question, party a developer, so I wasn't sure
which list was appropriate. Hopefully no one will feel this is too out
of place here. :)
My problem is that the program TPB reader
(http://www.daisy.org/tpbreader/download.asp?lang=en) a DAISY book
reader, crashes in different exotic ways. It fails in different ways
depending on if I run it in wine or crossover.
In wine I get a page fault. The entire dump is attached as wine.dump.
I'm not familiar with these dumps but it looks like the crash is in the
Windows application, not in wine. I've tried wine 0.9.2 and a snapshot
from the 5:th. Same result in both.
In crossover the application starts but displays the error:
Run-time error '287':
Application-defined or object-defined error.
If I enable some more output (CX_DEBUGMSG=err+all,fixme+all), then it
behaves differently. Now I get:
Run-time error '-1 (ffffffff)':
Automation error
After a few seconds another one pops up:
Run-time error '448':
Named argument not found
The first error can also be replicated by piping debug output to a file.
I managed to get dumps of both cases (cx1.dump, cx2.dump).
Now the question is if anyone here can give me a guess at what the
problem is? Our primary concern is too determine if it will require more
effort to fix wine/crossover to support this application or to write a
new, native DAISY reader. So just being able to determine which function
is lacking would be a tremendous help.
--
Thanks
Pierre Ossman Telephone: +46-13-21 46 00
Cendio AB Web: http://www.cendio.com
fixme:ole:CoRegisterMessageFilter stub
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:ITypeInfo_fnRelease destroy child objects
wine: Unhandled page fault on read access to 0x7f302460 at address 0x7f302460 (thread 0009), starting debugger...
WineDbg starting on pid 0x8
Unhandled exception: page fault on read access to 0x7f302460 in 32-bit code (0x7f302460).
In 32 bit mode.
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:1007 GS:0033
EIP:7f302460 ESP:7fcbee00 EBP:7fcbee3c EFLAGS:00010206( - 00 - RIP1)
EAX:1d325033 EBX:492a2620 ECX:492c1dc0 EDX:492c1dc4
ESI:7f302460 EDI:0001002c
Stack dump:
0x7fcbee00: 1d32506e 0001002c 00000024 00000000
0x7fcbee10: 7fcbefe0 7fcbefe0 0001002c 49270ec7
0x7fcbee20: 0001002c 00000024 00000000 7fcbefe0
0x7fcbee30: 492a2620 0001002c 7fcbefe0 7fcbee78
0x7fcbee40: 492717c7 1d325033 0001002c 00000024
0x7fcbee50: 00000000 7fcbefe0 49271251 0000492e
0200: sel=1007 base=7fffc000 limit=00001fff 32-bit rw-
Backtrace:
=>1 0x7f302460 (0x7f302460)
2 0x492717c7 in user32 (+0x917c7) (0x492717c7)
3 0x49275327 CallWindowProcA+0x1d7 in user32 (0x49275327)
4 0x49240a77 in user32 (+0x60a77) (0x49240a77)
5 0x492447b6 SendMessageTimeoutA+0x220 in user32 (0x492447b6)
6 0x49244871 SendMessageA+0x50 in user32 (0x49244871)
7 0x4926fa2c WINPOS_GetMinMaxInfo+0x27d in user32 (0x4926fa2c)
8 0x67efa9df X11DRV_CreateWindow+0x2ea in winex11.drv (0x67efa9df)
9 0x4926c412 in user32 (+0x8c412) (0x4926c412)
10 0x4926d861 CreateWindowExW+0x8c in user32 (0x4926d861)
err:dbghelp:pe_load_dbg_file -Unable to peruse .DBG file ocx\msdxm.dbg ("ocx\\msdxm.dbg")
11 0x1d3251dc in msdxm.ocx (+0x251dc) (0x1d3251dc)
12 0x1d310f26 in msdxm.ocx (+0x10f26) (0x1d310f26)
13 0x1d34925e in msdxm.ocx (+0x4925e) (0x1d34925e)
err:dbghelp:pe_load_dbg_file -Unable to peruse .DBG file DLL\MSVBVM60.dbg ("DLL\\MSVBVM60.dbg")
14 0x6a964631 __vbaCheckType+0x82 in msvbvm60 (0x6a964631)
15 0x11017cbb in ippdecryptor (+0x17cbb) (0x11017cbb)
16 0x6a95d98b EVENT_SINK_AddRef+0x11c in msvbvm60 (0x6a95d98b)
17 0x6a95d001 __vbaNew2+0x855 in msvbvm60 (0x6a95d001)
18 0x6a95ca28 __vbaNew2+0x27c in msvbvm60 (0x6a95ca28)
19 0x6a9697c2 TipCreateInstanceEx+0x9f in msvbvm60 (0x6a9697c2)
20 0x6a9696ea in msvbvm60 (+0x296ea) (0x6a9696ea)
21 0x6a969624 in msvbvm60 (+0x29624) (0x6a969624)
22 0x6a9695c4 in msvbvm60 (+0x295c4) (0x6a9695c4)
23 0x5549dd0d CoCreateInstanceEx+0x72 in ole32 (0x5549dd0d)
24 0x6a986bd9 in msvbvm60 (+0x46bd9) (0x6a986bd9)
25 0x6a964631 __vbaCheckType+0x82 in msvbvm60 (0x6a964631)
fixme:dbghelp:sffip_cb NIY on 'G:\Sources\TPBReader\TPB_Reader_1.0_NMS\TPBReader.pdb'
26 0x0043f7bc in tpbreader (+0x3f7bc) (0x0043f7bc)
27 0x6a9547da in msvbvm60 (+0x147da) (0x6a9547da)
28 0x6a952099 BASIC_CLASS_AddRef+0xf0b in msvbvm60 (0x6a952099)
29 0x6a94e24f ThunRTMain+0x411 in msvbvm60 (0x6a94e24f)
30 0x6a94df93 ThunRTMain+0x155 in msvbvm60 (0x6a94df93)
31 0x6a94de99 ThunRTMain+0x5b in msvbvm60 (0x6a94de99)
32 0x00403bf2 EntryPoint+0xa in tpbreader (0x00403bf2)
33 0x20020d1d (0x20020d1d)
0x7f302460: movl $0x7f30245c,%ecx
Modules:
Module Address Debug info Name (88 modules)
ELF 0x00101000-0011b000 Deferred libwine.so.1
ELF 0x0011d000-00213000 Deferred libwine_unicode.so.1
ELF 0x001e3000-001fd000 Deferred libice.so.6
ELF 0x0020c000-002e0000 Deferred libx11.so.6
PE 0x00400000-004b8000 Export tpbreader
ELF 0x0075a000-00770000 Deferred libnsl.so.1
ELF 0x007e8000-007f7000 Deferred libxext.so.6
ELF 0x007f9000-00801000 Deferred libxrender.so.1
ELF 0x00806000-00822000 Deferred ld-linux.so.2
ELF 0x00824000-0094d000 Deferred libc.so.6
ELF 0x0094f000-00974000 Deferred libm.so.6
ELF 0x00976000-0097a000 Deferred libdl.so.2
ELF 0x0097c000-0098f000 Deferred libz.so.1
ELF 0x00a03000-00a0d000 Deferred libxcursor.so.1
ELF 0x00a0f000-00a13000 Deferred libxrandr.so.2
ELF 0x00a5b000-00a61000 Deferred libxxf86dga.so.1
ELF 0x00a67000-00a79000 Deferred libpthread.so.0
ELF 0x00b17000-00b36000 Deferred libexpat.so.0
ELF 0x00b38000-00ba0000 Deferred libfreetype.so.6
ELF 0x00be6000-00c10000 Deferred libfontconfig.so.1
ELF 0x00c2e000-00c37000 Deferred libsm.so.6
ELF 0x00c39000-00c3e000 Deferred libxxf86vm.so.1
ELF 0x00cfb000-00d05000 Deferred libgcc_s.so.1
ELF 0x03bff000-03cca000 Deferred libasound.so.2
PE 0x08830000-08868000 Deferred wmpdxm
PE 0x10000000-10025000 Deferred dire~liu.ocx
PE 0x11000000-11025000 Export ippdecryptor
PE 0x1d300000-1d3d1000 Export msdxm.ocx
ELF 0x20175000-201f2000 Deferred ntdll<elf>
\-PE 0x20190000-201f2000 \ ntdll
ELF 0x2030d000-20318000 Deferred libnss_files.so.2
ELF 0x20318000-20322000 Deferred libnss_nis.so.2
ELF 0x204d9000-204f6000 Deferred imm32<elf>
\-PE 0x204e0000-204f6000 \ imm32
ELF 0x204f6000-2052a000 Deferred uxtheme<elf>
\-PE 0x20500000-2052a000 \ uxtheme
ELF 0x205f5000-2060a000 Deferred midimap<elf>
\-PE 0x20600000-2060a000 \ midimap
ELF 0x21f0f000-21fac000 Deferred oleaut32<elf>
\-PE 0x21f30000-21fac000 \ oleaut32
ELF 0x22b13000-22b32000 Deferred iphlpapi<elf>
\-PE 0x22b20000-22b32000 \ iphlpapi
ELF 0x23f4b000-23f92000 Deferred rpcrt4<elf>
\-PE 0x23f60000-23f92000 \ rpcrt4
ELF 0x2ddbf000-2de24000 Deferred quartz<elf>
\-PE 0x2ddd0000-2de24000 \ quartz
ELF 0x30ffc000-31010000 Deferred lz32<elf>
\-PE 0x31000000-31010000 \ lz32
ELF 0x31314000-3133e000 Deferred winealsa.drv<elf>
\-PE 0x31320000-3133e000 \ winealsa.drv
ELF 0x313f6000-314bf000 Deferred comctl32<elf>
\-PE 0x31400000-314bf000 \ comctl32
ELF 0x36e0d000-36e25000 Deferred msacm.drv<elf>
\-PE 0x36e10000-36e25000 \ msacm.drv
ELF 0x37e8b000-37f5c000 Deferred shell32<elf>
\-PE 0x37ea0000-37f5c000 \ shell32
ELF 0x38ce7000-38d00000 Deferred version<elf>
\-PE 0x38cf0000-38d00000 \ version
ELF 0x3cadc000-3cafb000 Deferred mpr<elf>
\-PE 0x3cae0000-3cafb000 \ mpr
ELF 0x3d42f000-3de2c000 Deferred gdi32<elf>
\-PE 0x3d450000-3de2c000 \ gdi32
ELF 0x44f11000-44f52000 Deferred advapi32<elf>
\-PE 0x44f20000-44f52000 \ advapi32
ELF 0x46c37000-46c89000 Deferred dsound<elf>
\-PE 0x46c50000-46c89000 \ dsound
ELF 0x491bc000-492f4000 Export user32<elf>
\-PE 0x491e0000-492f4000 \ user32
ELF 0x4af7f000-4af81000 Deferred xlcutf8load.so.2
ELF 0x4af9c000-4afbb000 Deferred ximcp.so.2
ELF 0x4ea50000-4ea74000 Deferred msacm32<elf>
\-PE 0x4ea60000-4ea74000 \ msacm32
ELF 0x50007000-5002d000 Deferred msvfw32<elf>
\-PE 0x50010000-5002d000 \ msvfw32
ELF 0x55469000-554fe000 Export ole32<elf>
\-PE 0x55480000-554fe000 \ ole32
PE 0x5f400000-5f4f2000 Deferred mfc42
ELF 0x60727000-60838000 Deferred kernel32<elf>
\-PE 0x60740000-60838000 \ kernel32
ELF 0x67eaa000-67f31000 Export winex11.drv<elf>
\-PE 0x67ec0000-67f31000 \ winex11.drv
PE 0x6a940000-6aa94000 Export msvbvm60
PE 0x6b800000-6b825000 Deferred scrrun
ELF 0x6e925000-6e9ab000 Deferred winmm<elf>
\-PE 0x6e930000-6e9ab000 \ winmm
PE 0x70bd0000-70c35000 Deferred shlwapi
PE 0x78000000-78040000 Deferred msvcrt
ELF 0x7bf00000-7bf03000 Deferred <wine-loader>
Threads:
process tid prio (all id:s are in hex)
00000008 (D) Y:\.wine\drive_c\Program Files\TPB\TPBReader.exe
00000009 0 <==
WineDbg terminated on pid 0x8
fixme:ole:CoRegisterMessageFilter stub
fixme:quartz:DBToAmpFactor (-10000) Stub!
fixme:quartz:DBToAmpFactor (0) Stub!
fixme:quartz:DBToAmpFactor (-600) Stub!
fixme:quartz:DBToAmpFactor (-10000) Stub!
fixme:quartz:DBToAmpFactor (0) Stub!
fixme:quartz:DBToAmpFactor (0) Stub!
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
err:ole:ITypeInfo_fnInvoke did not find member id 00000021, flags 4!
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f630000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0x13) 00000000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0x13) 00ffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fff0000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fff0000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fff0000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fd6ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f66ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f66ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f660000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f660000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f660000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f66ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f660000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f66ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f66ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 00000000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f660000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f66ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 00000000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f66ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 00000000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0x13) 00000000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7ec20000
fixme:quartz:DBToAmpFactor (-10000) Stub!
fixme:quartz:DBToAmpFactor (0) Stub!
fixme:quartz:DBToAmpFactor (-600) Stub!
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7ea70000
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2246,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa8c), partially implemented.
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2822,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2822,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,3134,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,3134,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,1262,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OLEPictureImpl_SaveAsFile (0x7fe1e578)->(0x7e23cc38, 0, (nil)), hacked stub.
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:win:WIN_CreateWindowEx Parent is HWND_MESSAGE
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x6
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x4
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x6
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x4
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x6
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x4
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:CoGetClassObject class {4955dd33-b159-11d0-8fcf-00aa006bcc59} not registered
fixme:ole:CoCreateInstance no classfactory created for CLSID {4955dd33-b159-11d0-8fcf-00aa006bcc59}, hres is 0x80040154
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:imm:ImmGetContext (0x20060): stub
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x6
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x4
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x6
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x4
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x6
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x4
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:ITypeInfo_fnInvoke did not find member id fffffdfe, flags 2!
fixme:imm:ImmGetContext (0x20060): stub
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:imm:ImmGetContext (0x20060): stub
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:imm:ImmGetContext (0x20060): stub
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:ole:OLEPictureImpl_FindConnectionPoint tried to find connection point on {33ad4f92-6699-11cf-b70c-00aa0060d393}?
fixme:hook:IsWinEventHookInstalled (32773)-stub!
err:ole:ITypeInfo_fnInvoke did not find member id fffffdfe, flags 2!
err:ole:ITypeInfo_fnInvoke did not find member id fffffdfe, flags 2!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:shell:DllCanUnloadNow stub
fixme:ole:CoRegisterMessageFilter stub
fixme:shell:DllCanUnloadNow stub
fixme:ole:CoRegisterMessageFilter stub
fixme:quartz:DBToAmpFactor (-10000) Stub!
fixme:quartz:DBToAmpFactor (0) Stub!
fixme:quartz:DBToAmpFactor (-600) Stub!
fixme:quartz:DBToAmpFactor (-10000) Stub!
fixme:quartz:DBToAmpFactor (0) Stub!
fixme:quartz:DBToAmpFactor (0) Stub!
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
err:ole:ITypeInfo_fnInvoke did not find member id 00000021, flags 4!
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f630000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0x13) 00000000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0x13) 00ffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fff0000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fffffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fff0000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fff0000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7fd6ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f66ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f66ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f660000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f660000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f660000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f66ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f660000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f66ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f66ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 00000000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f660000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f66ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 00000000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7f66ffff
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 00000000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0x13) 00000000
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7ec20000
fixme:quartz:DBToAmpFactor (-10000) Stub!
fixme:quartz:DBToAmpFactor (0) Stub!
fixme:quartz:DBToAmpFactor (-600) Stub!
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x3 -> 0xb) 7ea70000
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2246,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa8c), partially implemented.
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2822,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2822,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,3134,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,3134,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,1262,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OleLoadPictureEx (0x7ee92b3c,2638,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa5c), partially implemented.
fixme:ole:OLEPictureImpl_SaveAsFile (0x7fe1e578)->(0x7e23cc38, 0, (nil)), hacked stub.
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:win:WIN_CreateWindowEx Parent is HWND_MESSAGE
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x6
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x4
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x6
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x4
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x6
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x4
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
err:pidl:_ILSimpleGetText -- no text
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:CoGetClassObject class {4955dd33-b159-11d0-8fcf-00aa006bcc59} not registered
fixme:ole:CoCreateInstance no classfactory created for CLSID {4955dd33-b159-11d0-8fcf-00aa006bcc59}, hres is 0x80040154
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:imm:ImmGetContext (0x20060): stub
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x6
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x4
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x6
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x4
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x6
err:ole:CoInitializeEx Attempt to change threading model of this apartment from 0x2 to 0x4
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:ITypeInfo_fnInvoke did not find member id fffffdfe, flags 2!
fixme:imm:ImmGetContext (0x20060): stub
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:imm:ImmGetContext (0x20060): stub
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:ITypeInfo_fnInvoke did not find member id fffffdfe, flags 2!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:imm:ImmGetContext (0x20060): stub
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:ITypeInfo_fnInvoke did not find member id fffffdfe, flags 2!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:imm:ImmGetContext (0x20060): stub
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:imm:ImmGetContext (0x20060): stub
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:ITypeInfo_fnInvoke did not find member id fffffdfe, flags 2!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:imm:ImmGetContext (0x20060): stub
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:imm:ImmGetContext (0x20060): stub
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
err:ole:ITypeInfo_fnInvoke did not find member id fffffdfe, flags 2!
epoll_ctl: Operation not permitted
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb41-f175-11d1-a392-00e0291f3959} not found
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb46-f175-11d1-a392-00e0291f3959} not found
fixme:quartz:AsyncReader_QueryInterface No interface for {56a868b3-0ad4-11ce-b03a-0020af0ba770}!
fixme:quartz:AsyncReader_QueryInterface No interface for {56a868b3-0ad4-11ce-b03a-0020af0ba770}!
fixme:ole:OleLoadPictureEx (0x7ee99294,2246,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x7fa4fa8c), partially implemented.
fixme:ole:OLEPictureImpl_SaveAsFile (0x7fe38e90)->(0x7e28ba80, 0, (nil)), hacked stub.
err:ole:ITypeInfo_fnInvoke did not find member id fffffdfe, flags 2!
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:ole:OLEPictureImpl_FindConnectionPoint tried to find connection point on {33ad4f92-6699-11cf-b70c-00aa0060d393}?
err:ole:ITypeInfo_fnInvoke did not find member id fffffdfe, flags 2!
err:ole:ITypeInfo_fnInvoke did not find member id fffffdfe, flags 2!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:hook:IsWinEventHookInstalled (32773)-stub!
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:nls:CompareStringW Ignoring unknown style 0x10000000
fixme:shell:DllCanUnloadNow stub
fixme:ole:CoRegisterMessageFilter stub
fixme:shell:DllCanUnloadNow stub
Dec. 9, 2005
Re: fixme:font:load_VDMX Failed to retrieve vTable
by Huw D M Davies
On Fri, Dec 09, 2005 at 10:53:33AM +0100, Curro Amores wrote:
> hi my reports are not well displayed on my access97 app.
>
> fonts are displayed i anora location and separed
> I got this fixme
>
> fixme:font:load_VDMX Failed to retrieve vTable
>
>
> somebdoy knows how to fix it?
It just means that the font doesn't have a VDMX table. The reason
there's a fixme there is that I'm not sure whether we correctly scale
the font in that case.
Huw.
--
Huw Davies
huw(a)codeweavers.com
Dec. 9, 2005
Re: fixme:font:load_VDMX Failed to retrieve vTable
by Andreas Mohr
Hi,
On Fri, Dec 09, 2005 at 10:53:33AM +0100, Curro Amores wrote:
> hi my reports are not well displayed on my access97 app.
>
> fonts are displayed i anora location and separed
> I got this fixme
>
> fixme:font:load_VDMX Failed to retrieve vTable
dlls/gdi/freetype.c:
if(WineEngGetFontData(font, MS_VDMX_TAG, offset, group, 4) != GDI_ERROR) {
USHORT recs;
BYTE startsz, endsz;
BYTE *vTable;
recs = GET_BE_WORD(group);
startsz = group[2];
endsz = group[3];
TRACE("recs=%d startsz=%d endsz=%d\n", recs, startsz, endsz);
vTable = HeapAlloc(GetProcessHeap(), 0, recs * 6);
result = WineEngGetFontData(font, MS_VDMX_TAG, offset + 4, vTable, recs
* 6);
if(result == GDI_ERROR) {
FIXME("Failed to retrieve vTable\n");
goto end;
}
This FIXME is quite confusing and should be fixed, since it's NOT at all
about the "common" vTable term, but instead a VDMX font-related table AFAICS.
Use winedbg, set a breakpoint on load_VDMX(), step through it until the
2nd WineEngGetFontData() (that one is failing!), then step through it
until you know what exactly fails.
Maybe even a simple freetype upgrade might resolve the issue?
(in that case we'd need to know which freetype version is problematic)
Andreas Mohr
--
No programming skills!? Why not help translate many Linux applications!
https://launchpad.ubuntu.com/rosetta
Dec. 9, 2005
Re: Add some missing includes which contain used prototypes
by Alexandre Julliard
Vincent Béron <vberon(a)mecano.gme.usherb.ca> writes:
> --- dlls/kernel/change.c 28 Nov 2005 20:10:40 -0000 1.11
> +++ dlls/kernel/change.c 9 Dec 2005 02:20:19 -0000
> @@ -31,6 +31,7 @@
> #include "winerror.h"
> #include "winternl.h"
> #include "kernel_private.h"
> +#include "wine/winbase16.h"
> #include "wine/windef16.h"
> #include "wine/server.h"
> #include "wine/debug.h"
Please don't add more 16-bit headers to 32-bit files, we are trying to
get rid of them.
--
Alexandre Julliard
julliard(a)winehq.org
Dec. 9, 2005
Re: Check the return value of some functions
by Alexandre Julliard
Vincent Béron <vberon(a)mecano.gme.usherb.ca> writes:
> diff -u -r1.11 debug.c
> --- libs/wine/debug.c 18 Oct 2005 10:49:20 -0000 1.11
> +++ libs/wine/debug.c 8 Dec 2005 17:37:21 -0000
> @@ -172,7 +172,7 @@
> "Example: WINEDEBUG=3D+all,warn-heap\n"
> " turns on all messages except warning heap messages\n"
> "Available message classes: err, warn, fixme, trace\n";
> - write( 2, usage, sizeof(usage) - 1 );
> + fprintf( stderr, usage );
That's really silly. There's no reason that not checking the result of
write would be a bug, but making it a printf would suddenly make it
harmless. I think these warnings are really misguided, you can't just
decide that some functions need to be always checked and others not,
it depends on what the code is doing.
It's OK to turn on the warnings to see if there are places where they
turn up a real problem, but please don't "fix" places that are not
bugs.
--
Alexandre Julliard
julliard(a)winehq.org
Dec. 9, 2005
dxiag question
by Christian Gmeiner
Hi....
I get this errors with "Need for spees . most wanted":
austriancoder(a)neptun /media/cdrecorder $ wine AutoRun.exe
austriancoder(a)neptun /media/cdrecorder $
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd665f0,
L"dwDirectXVersionMajor", 0x7fbab8c8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd665f0,
L"dwDirectXVersionMinor", 0x7fbab8c8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd665f0,
L"szDirectXVersionLetter", 0x7fbab8c8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd665f0,
L"szDirectXVersionEnglish", 0x7fbab8c8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd665f0,
L"szDirectXVersionLongEnglish", 0x7fbab8c8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd665f0, L"bDebug",
0x7fbab8c8)
fixme:dxdiag:IDxDiagContainerImpl_AddChildContainer (0x7fd665d0,
L"DxDiag_SystemInfo", 0x7fd665f0)
fixme:dxdiag:IDxDiagContainerImpl_AddChildContainer (0x7fd665d0,
L"DxDiag_SystemDevices", 0x7fd6d530)
fixme:dxdiag:IDxDiagContainerImpl_AddChildContainer (0x7fd665d0,
L"DxDiag_LogicalDisks", 0x7fd6d5a0)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"ddraw.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"dplayx.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"dpnet.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"dinput.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"dinput8.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"dsound.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"dswave.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"d3d8.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"d3d9.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"dmband.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"dmcompos.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"dmime.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"dmloader.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"dmscript.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"dmstyle.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"dmsynth.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"dmusic.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"devenum.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:DXDiag_AddFileDescContainer (0x7fd6d608,L"quartz.dll")
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szPath",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szName",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bExists",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szVersion",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"szAttributes",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"szLanguageEnglish", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608,
L"dwFileTimeHigh", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"dwFileTimeLow",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bBeta", 0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddProp (0x7fd6d608, L"bDebug",
0x7fbab4a8)
fixme:dxdiag:IDxDiagContainerImpl_AddChildContainer (0x7fd665d0,
L"DxDiag_DirectXFiles", 0x7fd6d608)
fixme:dxdiag:IDxDiagContainerImpl_AddChildContainer (0x7fd665d0,
L"DxDiag_DisplayDevices", 0x7fd719c0)
fixme:dxdiag:IDxDiagContainerImpl_AddChildContainer (0x7fd71a30,
L"DxDiag_SoundDevices", 0x7fd71a50)
fixme:dxdiag:IDxDiagContainerImpl_AddChildContainer (0x7fd71a30,
L"DxDiag_SoundCaptureDevices", 0x7fd71ab8)
fixme:dxdiag:IDxDiagContainerImpl_AddChildContainer (0x7fd665d0,
L"DxDiag_DirectSound", 0x7fd71a30)
fixme:dxdiag:IDxDiagContainerImpl_AddChildContainer (0x7fd665d0,
L"DxDiag_DirectMusic", 0x7fd71b78)
fixme:dxdiag:IDxDiagContainerImpl_AddChildContainer (0x7fd665d0,
L"DxDiag_DirectInput", 0x7fd71be0)
fixme:dxdiag:IDxDiagContainerImpl_AddChildContainer (0x7fd665d0,
L"DxDiag_DirectPlay", 0x7fd72118)
So.. i think it is very important to fix this and then the setup could
say that directx is installed.
Now my question: is anybody working on this?
Thanks,
Christian
--
Christian Gmeiner - student of computer science
http://dxr3plugin.sf.net
http://itb04.ath.cx
Dec. 9, 2005