Adventures Installing ESI VIP

Questions about Wine on Linux
Locked
jonahbron
Newbie
Newbie
Posts: 4
Joined: Thu Aug 09, 2012 7:42 pm

Adventures Installing ESI VIP

Post by jonahbron »

Hello, world!

I'm trying to install an application that integrates with a VOIP phone system. It seems promising so far. First it needed MFC42.DLL, so I had to install vcrun6. To do that, I had to download the german version manually (from here), cabextract the vcredist.exe file inside, put it in ~/.cache/winetricks/vcrun6, and run "winetricks vcrun6". That got that dependency out of the way, but then it told me I had to install Mono to run .NET applications. I installed mono210.

The current problem is that it has a problem with "bad parameter passed-in". Here's the full log of the installer (setup.exe):

Code: Select all

fixme:storage:create_storagefile Storage share mode not implemented.
fixme:mscoree:get_runtime_info unsupported startup flags 6
fixme:mscoree:get_runtime_info unsupported startup flags 6
fixme:msi:ITERATE_CreateShortcuts poorly handled shortcut format, advertised shortcut
fixme:msi:ITERATE_CreateShortcuts poorly handled shortcut format, advertised shortcut
err:ole:CoCreateInstance apartment not initialised
err:ole:CoCreateInstance apartment not initialised
err:ole:CoCreateInstance apartment not initialised
err:ole:CoCreateInstance apartment not initialised
err:ole:CoCreateInstance apartment not initialised
err:ole:CoCreateInstance apartment not initialised
err:ole:CoCreateInstance apartment not initialised
err:ole:TLB_ReadTypeLib Loading of typelib L"C:\\Program Files\\Common Files\\Microsoft Shared\\DAO\\dao2535.tlb" failed with error 2
err:ole:CoCreateInstance apartment not initialised
err:ole:CoCreateInstance apartment not initialised
err:ole:CoInitializeEx (0x99df2c, 2) - Bad parameter passed-in 0x99df2c, must be an old Windows Application
err:msi:ITERATE_Actions Execution halted, action L"InstallFinalize" returned 1627
err:msi:ITERATE_Actions Execution halted, action L"ExecuteAction" returned 1627
As you can see, it wants typelib, but I haven't figured out how to install it, and it seems to skip right over it anyway. As you can see, it freaks out and says "Bad parameter passed-in 0x99df2c, must be an old Windows Application". Sounds like it's trying to use some outdated functionality? What should I do?

Thanks a lot! Love Wine!
jonahbron
Newbie
Newbie
Posts: 4
Joined: Thu Aug 09, 2012 7:42 pm

Re: Adventures Installing ESI VIP

Post by jonahbron »

Okay, I tried installing mono26 instead of mono210, and it installs successfully (installing mono26 required downloading it manually as well). Here's the whole process as a BASH script:

Code: Select all

wget http://download.microsoft.com/download/vc60pro/Update/2/W9XNT4/EN-US/VC6RedistSetup_deu.exe
cabextract -q VCRedistSetup_deu.exe -F vcredist.exe
rm VCRedistSetup_deu.exe
mv vcredist.exe ~/.cache/winetricks/vcrun6
winetricks vcrun6
wget http://download.mono-project.com/archive/2.6.7/windows-installer/2/mono-2.6.7-gtksharp-2.12.10-win32-2.exe
mv mono-2.6.7-gtksharp-2.12.10-win32-2.exe ~/.cache/winetricks/mono26
winetricks mono26
wget http://www.esi-estech.com/users/software/VIP/VIP_SE/VIP_SE_5_05_07/VIP_SE_5_05_07.exe
unzip VIP_SE_5_05_07.exe
wine setup.exe
rm setup.exe VipseSetup.msi
That will set it up from start to finish. However, when I run it, it doesn't quite work. I see the login screen just fine, but when I login, I get an "Unhandled page fault on read" error. The important part is at the end.

Code: Select all

fixme:advapi:RegisterEventSourceA ((null),"VBRuntime"): stub
fixme:advapi:RegisterEventSourceW (L"",L"VBRuntime"): stub
fixme:advapi:ReportEventA (0xcafe4242,0x0004,0x0000,0x00000001,(nil),0x0001,0x00000000,0x32f76c,(nil)): stub
fixme:advapi:ReportEventW (0xcafe4242,0x0004,0x0000,0x00000001,(nil),0x0001,0x00000000,0x148210,(nil)): stub
fixme:advapi:ReportEventA (0xcafe4242,0x0004,0x0000,0x00000001,(nil),0x0001,0x00000000,0x32f76c,(nil)): stub
fixme:advapi:ReportEventW (0xcafe4242,0x0004,0x0000,0x00000001,(nil),0x0001,0x00000000,0x148268,(nil)): stub
fixme:advapi:DeregisterEventSource (0xcafe4242) stub
err:ole:TLB_ReadTypeLib Loading of typelib L"C:\\Program Files\\Common Files\\Microsoft Shared\\DAO\\dao2535.tlb" failed with error 2
fixme:hnetcfg:fw_manager_QueryInterface interface {7fd52380-4e07-101b-ae2d-08002b2ec713} not implemented
fixme:hnetcfg:fw_manager_QueryInterface interface {37d84f60-42cb-11ce-8135-00aa004bb851} not implemented
fixme:hnetcfg:fw_ports_Item 0x149920, 59090, 17, 0x32f9d8
fixme:hnetcfg:fw_port_put_Protocol 0x149a78 17
fixme:hnetcfg:fw_port_put_Port 0x149a78 59090
fixme:hnetcfg:fw_port_get_Enabled 0x149a78 0x32f9d4
fixme:ole:OleLoadPictureEx (0xcc4a1c,3293,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f81c), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x20024 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ea2c
fixme:oleacc:AccessibleObjectFromWindow 0x10096 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e840
fixme:oleacc:AccessibleObjectFromWindow 0x10098 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e87c
fixme:oleacc:AccessibleObjectFromWindow 0x1009a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e9fc
fixme:oleacc:AccessibleObjectFromWindow 0x1009c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e9fc
fixme:oleacc:AccessibleObjectFromWindow 0x1009e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e840
fixme:oleacc:AccessibleObjectFromWindow 0x100a0 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e87c
fixme:oleacc:AccessibleObjectFromWindow 0x200a0 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e554
fixme:oleacc:AccessibleObjectFromWindow 0x300a0 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e4a4
fixme:oleacc:AccessibleObjectFromWindow 0x400a0 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e4a4
fixme:ole:OleLoadPictureEx (0xcc92b4,5502,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f75c), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x100a4 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ea2c
fixme:ole:OleLoadPictureEx (0xcc92b4,334,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:oleacc:AccessibleObjectFromWindow 0x100ac -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e9fc
fixme:ole:OleLoadPictureEx (0xcc92b4,334,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:oleacc:AccessibleObjectFromWindow 0x100b0 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e9fc
fixme:ole:OleLoadPictureEx (0xcc92b4,334,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:oleacc:AccessibleObjectFromWindow 0x100b4 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e9fc
fixme:ole:OleLoadPictureEx (0xcc92b4,774,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:oleacc:AccessibleObjectFromWindow 0x100b8 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e9fc
fixme:ole:OleLoadPictureEx (0xcc92b4,774,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:oleacc:AccessibleObjectFromWindow 0x100bc -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e9fc
fixme:ole:OleLoadPictureEx (0xcc92b4,1414,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:oleacc:AccessibleObjectFromWindow 0x100c0 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e9fc
fixme:ole:OleLoadPictureEx (0xcc92b4,7414,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:oleacc:AccessibleObjectFromWindow 0x100c4 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e9fc
fixme:ole:OleLoadPictureEx (0xcc92b4,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1c4598), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1c4710), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1c47a0), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1c4830), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1c48c0), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1c4950), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1c4b60), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1c4bf0), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1c4c68), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1c4ce0), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1220,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,71,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,590,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,641,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1005,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,998,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1218,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1194,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,2303,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1904,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1919,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1904,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,902,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:ole:OleLoadPictureEx (0xcc92b4,1086,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:ole:OleLoadPictureEx (0xcc92b4,326,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:ole:OleLoadPictureEx (0xcc92b4,1086,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:ole:OleLoadPictureEx (0xcc92b4,902,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:ole:OleLoadPictureEx (0xcc92b4,1181,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1086,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1251,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1086,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1431,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1358,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1086,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1451,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1086,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1466,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,1446,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OleLoadPictureEx (0xcc92b4,334,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f72c), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:ole:OLEPictureImpl_SaveAsFile (0x1b96c8)->(0x1d4040, 0, (nil)), hacked stub.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:oleacc:AccessibleObjectFromWindow 0x100e0 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ea2c
fixme:oleacc:AccessibleObjectFromWindow 0x100e4 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8fc
fixme:ole:OleLoadPictureEx (0xccce74,5502,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f740), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x100e8 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ea10
fixme:oleacc:AccessibleObjectFromWindow 0x100ee -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e21c
fixme:ole:OLEPictureImpl_SaveAsFile (0x2059d8)->(0x209198, 0, (nil)), hacked stub.
fixme:ole:OleLoadPictureEx (0xccd93c,5502,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f740), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x100f4 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ea10
fixme:ole:OLEPictureImpl_SaveAsFile (0x2182a8)->(0x2168f0, 0, (nil)), hacked stub.
fixme:ole:OleLoadPictureEx (0xcce9fc,5502,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f6bc), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x100fe -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e98c
fixme:ole:OleLoadPictureEx (0xcce9fc,334,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f68c), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x10108 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32db98
fixme:oleacc:AccessibleObjectFromWindow 0x1010a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32dc54
fixme:oleacc:AccessibleObjectFromWindow 0x10106 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7dc
fixme:ole:OleLoadPictureEx (0xcce9fc,334,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f68c), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x10110 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32db98
fixme:oleacc:AccessibleObjectFromWindow 0x10112 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32dc54
fixme:oleacc:AccessibleObjectFromWindow 0x1010e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7dc
fixme:oleacc:AccessibleObjectFromWindow 0x10116 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32db98
fixme:oleacc:AccessibleObjectFromWindow 0x10118 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32dc54
fixme:oleacc:AccessibleObjectFromWindow 0x10114 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7dc
fixme:oleacc:AccessibleObjectFromWindow 0x1011c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32db98
fixme:oleacc:AccessibleObjectFromWindow 0x1011e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32dc54
fixme:oleacc:AccessibleObjectFromWindow 0x1011a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7dc
fixme:ole:OleLoadPictureEx (0xcce9fc,334,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f68c), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x10124 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32db98
fixme:oleacc:AccessibleObjectFromWindow 0x10126 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32dc54
fixme:oleacc:AccessibleObjectFromWindow 0x10122 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7dc
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b09148), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b091c0), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b09238), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b092b0), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b09328), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b093a0), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b09418), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b09490), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b09508), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b09580), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b095f8), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b09670), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b096e8), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x1013c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x1013e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e92c
fixme:ole:OleLoadPictureEx (0xcce9fc,3270,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f62c), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x10142 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8fc
fixme:oleacc:AccessibleObjectFromWindow 0x10144 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8fc
fixme:oleacc:AccessibleObjectFromWindow 0x10146 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7cc
fixme:oleacc:AccessibleObjectFromWindow 0x10148 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x1014a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e89c
fixme:oleacc:AccessibleObjectFromWindow 0x1014c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e89c
fixme:oleacc:AccessibleObjectFromWindow 0x10150 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ddc4
fixme:oleacc:AccessibleObjectFromWindow 0x1014e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e89c
fixme:oleacc:AccessibleObjectFromWindow 0x10152 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e89c
fixme:oleacc:AccessibleObjectFromWindow 0x10154 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x10156 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x10158 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x1015a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x1015c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x1015e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x10160 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x10162 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x10164 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x10166 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x10168 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x1016a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x1016c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x1016e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x10170 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x10172 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x10174 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x10176 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x10178 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e79c
fixme:oleacc:AccessibleObjectFromWindow 0x1017a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8fc
fixme:oleacc:AccessibleObjectFromWindow 0x1017c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7cc
fixme:oleacc:AccessibleObjectFromWindow 0x1017e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8fc
fixme:oleacc:AccessibleObjectFromWindow 0x10180 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7cc
fixme:oleacc:AccessibleObjectFromWindow 0x10182 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e92c
fixme:oleacc:AccessibleObjectFromWindow 0x10184 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8fc
fixme:ole:OleLoadPictureEx (0xcce9fc,1218,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,71,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x10186 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:ole:OleLoadPictureEx (0xcce9fc,1203,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,71,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x10188 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:ole:OleLoadPictureEx (0xcce9fc,1225,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,71,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x1018a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:ole:OleLoadPictureEx (0xcce9fc,1220,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,71,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x1018c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:ole:OleLoadPictureEx (0xcce9fc,1215,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,71,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x1018e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:ole:OleLoadPictureEx (0xcce9fc,770,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,71,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x10190 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:ole:OleLoadPictureEx (0xcce9fc,1244,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,71,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x10192 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:ole:OleLoadPictureEx (0xcce9fc,1212,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,71,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x10194 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:ole:OleLoadPictureEx (0xcce9fc,1268,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,71,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x10196 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x10198 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8fc
fixme:oleacc:AccessibleObjectFromWindow 0x1019a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x1019e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32dad8
fixme:oleacc:AccessibleObjectFromWindow 0x101a0 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32db94
fixme:oleacc:AccessibleObjectFromWindow 0x1019c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e71c
fixme:oleacc:AccessibleObjectFromWindow 0x101a2 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x101a6 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32dad8
fixme:oleacc:AccessibleObjectFromWindow 0x101a8 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32db94
fixme:oleacc:AccessibleObjectFromWindow 0x101a4 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e71c
fixme:oleacc:AccessibleObjectFromWindow 0x101aa -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e700
fixme:oleacc:AccessibleObjectFromWindow 0x101ac -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e738
fixme:oleacc:AccessibleObjectFromWindow 0x101ae -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8fc
fixme:oleacc:AccessibleObjectFromWindow 0x101b0 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x101b4 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32dad8
fixme:oleacc:AccessibleObjectFromWindow 0x101b6 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32db94
fixme:oleacc:AccessibleObjectFromWindow 0x101b2 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e71c
fixme:oleacc:AccessibleObjectFromWindow 0x101b8 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x101bc -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32dad8
fixme:oleacc:AccessibleObjectFromWindow 0x101be -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32db94
fixme:oleacc:AccessibleObjectFromWindow 0x101ba -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e71c
fixme:oleacc:AccessibleObjectFromWindow 0x101c0 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x101c4 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32dad8
fixme:oleacc:AccessibleObjectFromWindow 0x101c6 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32db94
fixme:oleacc:AccessibleObjectFromWindow 0x101c2 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e71c
fixme:oleacc:AccessibleObjectFromWindow 0x101c8 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e738
fixme:oleacc:AccessibleObjectFromWindow 0x101ca -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e92c
fixme:ole:OleLoadPictureEx (0xcce9fc,3270,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f62c), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x101ce -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8fc
fixme:oleacc:AccessibleObjectFromWindow 0x101d0 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8fc
fixme:ole:OleLoadPictureEx (0xcce9fc,334,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x101d6 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32db08
fixme:oleacc:AccessibleObjectFromWindow 0x101d8 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32dbc4
fixme:oleacc:AccessibleObjectFromWindow 0x101d4 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e74c
fixme:oleacc:AccessibleObjectFromWindow 0x101da -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7cc
fixme:oleacc:AccessibleObjectFromWindow 0x101dc -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8fc
fixme:ole:OleLoadPictureEx (0xcce9fc,334,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x101e2 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32db08
fixme:oleacc:AccessibleObjectFromWindow 0x101e4 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32dbc4
fixme:oleacc:AccessibleObjectFromWindow 0x101e0 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e74c
fixme:oleacc:AccessibleObjectFromWindow 0x101e6 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7cc
fixme:oleacc:AccessibleObjectFromWindow 0x101e8 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e798
fixme:oleacc:AccessibleObjectFromWindow 0x101ea -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:ole:OleLoadPictureEx (0xcce9fc,3270,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f65c), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x101ee -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e92c
fixme:ole:OleLoadPictureEx (0xcce9fc,3270,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f65c), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x101f2 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e92c
fixme:oleacc:AccessibleObjectFromWindow 0x101f4 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e92c
fixme:oleacc:AccessibleObjectFromWindow 0x101f6 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8fc
fixme:oleacc:AccessibleObjectFromWindow 0x101f8 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x101fa -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e89c
fixme:ole:OleLoadPictureEx (0xcce9fc,2303,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x101fc -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x101fe -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7fc
fixme:oleacc:AccessibleObjectFromWindow 0x10200 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e92c
fixme:oleacc:AccessibleObjectFromWindow 0x10202 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8fc
fixme:ole:OleLoadPictureEx (0xcce9fc,326,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:oleacc:AccessibleObjectFromWindow 0x10206 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:ole:OleLoadPictureEx (0xcce9fc,326,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f5fc), partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0 palette.
fixme:oleacc:AccessibleObjectFromWindow 0x1020a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x1020c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7cc
fixme:oleacc:AccessibleObjectFromWindow 0x1020e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7cc
fixme:oleacc:AccessibleObjectFromWindow 0x10212 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32dce0
fixme:oleacc:AccessibleObjectFromWindow 0x10210 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e74c
fixme:oleacc:AccessibleObjectFromWindow 0x10216 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32dce0
fixme:oleacc:AccessibleObjectFromWindow 0x10214 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e74c
fixme:oleacc:AccessibleObjectFromWindow 0x10218 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e92c
fixme:oleacc:AccessibleObjectFromWindow 0x1021a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8fc
fixme:oleacc:AccessibleObjectFromWindow 0x1021c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x1021e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x10220 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x10222 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x10224 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x10226 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x10228 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x1022a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x1022c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x1022e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x10230 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x10232 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x10234 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x10236 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x10238 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x1023a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x1023c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x1023e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x10240 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x10242 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e8cc
fixme:oleacc:AccessibleObjectFromWindow 0x10244 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e92c
fixme:oleacc:AccessibleObjectFromWindow 0x10246 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7fc
fixme:oleacc:AccessibleObjectFromWindow 0x10248 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e92c
fixme:oleacc:AccessibleObjectFromWindow 0x1024a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7fc
fixme:oleacc:AccessibleObjectFromWindow 0x1024c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e92c
fixme:oleacc:AccessibleObjectFromWindow 0x1024e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e7fc
fixme:oleacc:AccessibleObjectFromWindow 0x10250 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x10252 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x10254 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x10256 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x10258 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x1025a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x1025c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x1025e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x10260 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x10262 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x10264 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b5fc08), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b5fc80), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b5fe00), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b5fe78), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b5fef0), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b5ff68), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b5ffe0), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b60058), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b600d0), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b60148), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b601c0), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b60238), partially implemented.
fixme:ole:OleLoadPictureEx (0xcce9fc,0,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=16,y=16,f=0,0x1b602b0), partially implemented.
fixme:oleacc:AccessibleObjectFromWindow 0x1027a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x1027c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x1027e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x10280 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x10282 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x10284 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x10286 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x10288 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x1028a -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x1028c -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x1028e -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x10290 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:oleacc:AccessibleObjectFromWindow 0x10292 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e95c
fixme:ole:OLEPictureImpl_SaveAsFile (0x21d408)->(0x1b73d38, 0, (nil)), hacked stub.
fixme:win:EnumDisplayDevicesW ((null),0,0x32e284,0x0032ec88), stub!
fixme:win:EnumDisplayDevicesW (L"\\\\.\\DISPLAY1",0,0x32e284,0x0032ec88), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x32e284,0x0032ec88), stub!
fixme:oleacc:AccessibleObjectFromWindow 0x102ae -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e604
fixme:oleacc:AccessibleObjectFromWindow 0x102b0 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32e5d4
fixme:ole:OleLoadPictureEx (0xce31cc,774,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f304), partially implemented.
fixme:ole:OleLoadPictureEx (0xce31cc,774,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f304), partially implemented.
fixme:ole:OleLoadPictureEx (0xce31cc,774,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f304), partially implemented.
fixme:ole:OleLoadPictureEx (0xce31cc,774,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f304), partially implemented.
fixme:ole:OleLoadPictureEx (0xce31cc,774,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f304), partially implemented.
err:ole:marshal_object object doesn't expose interface {7fd52380-4e07-101b-ae2d-08002b2ec713}, failing with error 0x80004002
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface failed with error 0x80004002
err:ole:marshal_object object doesn't expose interface {37d84f60-42cb-11ce-8135-00aa004bb851}, failing with error 0x80004002
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface failed with error 0x80004002
fixme:tapi:lineInitializeExA (0x2396fec, 0x2340000, (nil), "CATLTapi", 0x2396ff4, 0x2abe4a0, 0x2abe3e8): stub.
fixme:tapi:lineAddProviderA (esivsp.tsp, (nil), 0x2dbe4b8): stub.
fixme:oleacc:AccessibleObjectFromWindow 0x102bc -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ec78
fixme:oleacc:AccessibleObjectFromWindow 0x102c2 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ec78
fixme:oleacc:AccessibleObjectFromWindow 0x102c4 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ec78
fixme:oleacc:AccessibleObjectFromWindow 0x102c6 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ec78
fixme:oleacc:AccessibleObjectFromWindow 0x102c8 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ec78
fixme:oleacc:AccessibleObjectFromWindow 0x102ca -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ec78
fixme:oleacc:AccessibleObjectFromWindow 0x102cc -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ec78
fixme:oleacc:AccessibleObjectFromWindow 0x102ce -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ec78
fixme:oleacc:AccessibleObjectFromWindow 0x102d0 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ec78
fixme:oleacc:AccessibleObjectFromWindow 0x102d2 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ec78
fixme:oleacc:AccessibleObjectFromWindow 0x102d4 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ec78
fixme:oleacc:AccessibleObjectFromWindow 0x102d6 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ec78
fixme:oleacc:AccessibleObjectFromWindow 0x102d8 -4 {618736e0-3c3d-11cf-810c-00aa00389b71} 0x32ec78
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4ed2-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4ed2-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4ed2-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4ed2-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4ed2-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4ed2-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4ed2-6699-11cf-b70c-00aa0060d393}
fixme:ole:IEnumConnections_Next_Proxy not implemented
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4ed2-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4ed2-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4ed2-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4ed2-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4ed2-6699-11cf-b70c-00aa0060d393}
fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for {33ad4f92-6699-11cf-b70c-00aa0060d393}
wine: Unhandled page fault on read access to 0x7e07c4a0 at address 0x7e07c4a0 (thread 0009), starting debugger...
Unhandled exception: page fault on read access to 0x7e07c4a0 in 32-bit code (0x7e07c4a0).
I wonder if this could have anything to do with typelib being missing? But it doesn't sound like it.
jonahbron
Newbie
Newbie
Posts: 4
Joined: Thu Aug 09, 2012 7:42 pm

Re: Adventures Installing ESI VIP

Post by jonahbron »

I couldn't get past that problem, despite much testing and experimentation. I ended up going with VirtualBox running Windows XP. While setting that up, I discovered "seamless window" mode where the guest OS's windows show up on your desktop along with your own, which is pretty awesome.
Locked