https://bugs.winehq.org/show_bug.cgi?id=35884
Bug ID: 35884 Summary: Visual Studio 20XX frequently calls CoGetCallerTID(), resulting in console spam due to stub Product: Wine Version: 1.7.15 Hardware: x86 OS: Linux Status: NEW Severity: enhancement Priority: P2 Component: ole32 Assignee: wine-bugs@winehq.org Reporter: focht@gmx.net
Hello folks,
as the summary says... not really harmful though.
--- snip --- ... fixme:ole:CoGetCallerTID stub! fixme:ole:CoGetCallerTID stub! fixme:ole:CoGetCallerTID stub! fixme:ole:CoGetCallerTID stub! ... --- snip ---
I'd prefer a real implementation over a 'FIXME once', it's not particularly hard to do.
MSDN: http://msdn.microsoft.com/en-us/library/windows/desktop/ms680683%28v=vs.85%2...
--- quote ---
lpdwTID [out]
Receives the apartment ID of the caller's thread. For a single threaded apartment (STA), this is the current thread ID. For a multithreaded apartment (MTA), the value is 0. For a neutral apartment (NA), the value is -1. --- quote ---
Source: http://source.winehq.org/git/wine.git/blob/39562961283ccb7c838c5650b11873e69...
--- snip --- 92 HRESULT WINAPI CoGetCallerTID(LPDWORD lpdwTID) 93 { 94 FIXME("stub!\n"); 95 return E_NOTIMPL; 96 } --- snip ---
$ wine --version wine-1.7.15-112-g2aad5d7
Regards