http://bugs.winehq.org/show_bug.cgi?id=8341
------- Additional Comments From bluewormx(a)telefonica.net 2007-14-05 14:41 -------
Sorry the workaround is to hand copy the files of the DVD. The attachment I
posted is a working directory structure.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6168
------- Additional Comments From focht(a)gmx.net 2007-14-05 14:24 -------
Hello,
grrr .. a small typo
--- snip ---
*ppvObj = NULL;
if (!ppvObj)
return E_INVALIDARG;
--- snip ---
should be:
--- snip ---
if (!ppvObj)
return E_INVALIDARG;
*ppvObj = NULL;
--- snip ---
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=6168
------- Additional Comments From focht(a)gmx.net 2007-14-05 14:19 -------
Hello,
another random pick.
--- quote ---
unimplemented ole32.OleCreateEmbeddingHelper
--- quote ---
Following will get app to work.
Beware: this is not a complete implementation, it ignores the EMBDHLP_DELAY case
(object creation immediately -> EMBDHLP_CREATENOW).
Though it doesnt seem to cause harm.
--- snip dlls/ole32/ole2impl.c ---
/***********************************************************************
* OleCreateEmbeddingHelper [OLE32.@]
*/
HRESULT WINAPI OleCreateEmbeddingHelper( REFCLSID clsid, LPUNKNOWN pUnkOuter,
DWORD flags, LPCLASSFACTORY pCF, REFIID riid, LPVOID *
ppvObj)
{
HRESULT hr;
IUnknown *pUnk = NULL;
FIXME("(%s, %p, 0x%x, %p, %s, %p)\n", debugstr_guid(clsid), pUnkOuter,
flags, pCF, debugstr_guid(riid), ppvObj);
*ppvObj = NULL;
if (!ppvObj)
return E_INVALIDARG;
if (pUnkOuter && !IsEqualIID( &IID_IUnknown, riid))
return E_INVALIDARG;
if (!pCF)
{
if( (flags & (EMBDHLP_INPROC_HANDLER | EMBDHLP_CREATENOW)) ==
(EMBDHLP_INPROC_HANDLER | EMBDHLP_CREATENOW))
{
return OleCreateDefaultHandler(clsid, pUnkOuter, riid, ppvObj);
}
/* pCF cannot be NULL for EMBDHLP_INPROC_SERVER */
return E_INVALIDARG;
}
hr = IClassFactory_CreateInstance( pCF, pUnkOuter, riid, (LPVOID*) &pUnk);
if (SUCCEEDED(hr))
{
hr = IUnknown_QueryInterface( pUnk, riid, ppvObj);
IUnknown_Release( pUnk);
}
return hr;
}
--- snip dlls/ole32/ole2impl.c ---
and
--- snip dlls/ole32/ole32.spec ---
@ stdcall OleCreateEmbeddingHelper(ptr ptr long ptr ptr ptr)
--- snip dlls/ole32/ole32.spec ---
Impl done on top of wine-0.9.37-44-g260591f
As mentioned in previous post, make sure you set native comctl32 (separate bug
report).
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7703
inckie(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From inckie(a)gmail.com 2007-14-05 14:17 -------
As of Wine 0.9.37, this seems to be fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8388
thestig(a)google.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jacek(a)codeweavers.com
------- Additional Comments From thestig(a)google.com 2007-14-05 14:16 -------
09adb8cf051ac76df81260afd68a99974c2bbd6c is first bad commit
commit 09adb8cf051ac76df81260afd68a99974c2bbd6c
Author: Jacek Caban <jacek(a)codeweavers.com>
Date: Fri May 11 13:16:15 2007 +0200
mshtml: Split IPersistMoniker::Load.
:040000 040000 ae96583c8141d2513ace55e5d16463a176d23631
c8b7a9443915765bfd70eb8f96092637a37c1808 M dlls
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7342
------- Additional Comments From bryan.christ(a)gmail.com 2007-14-05 14:10 -------
Damjan,
When I try to run regsvr32 I get the following error message:
DllRegisterServer not implemented in DLL mapi32.dll
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8194
stefandoesinger(a)gmx.at changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
------- Additional Comments From stefandoesinger(a)gmx.at 2007-14-05 14:07 -------
You can look at dlls/ddraw/tests/dsurface.c to write a test that tests a ddsd
structure with size 0 and see what error windows returns.
The ddraw rewrite broke quite a number of things, so both apps breaking
because of it doesn't say anyting. Also the "initializin graphics" is way to
generic to be meaninful.
I can write a test for that too, but I am busy at university at the moment,
and currently I am testing multithreading in directdraw, and I don't want to
interrupt that, so you'd have to wait some time.
Anyway, assigning to me so I don't forget about it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=8038
------- Additional Comments From citizenr(a)gmail.com 2007-14-05 14:01 -------
>I sent a more correct patch
tested and works, great, 2 utorrent/wine bugs in 2 days woohoo :)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.