[Bug 35884] New: Visual Studio 20XX frequently calls CoGetCallerTID(), resulting in console spam due to stub

wine-bugs at winehq.org wine-bugs at winehq.org
Fri Mar 28 16:15:01 CDT 2014


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 at winehq.org
          Reporter: focht at 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%29.aspx

--- 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/39562961283ccb7c838c5650b11873e69a8d8e56:/dlls/ole32/ole2stubs.c#l92

--- 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

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list