From: Alex Henrie alexhenrie24@gmail.com
--- dlls/graphicscapture/main.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-)
diff --git a/dlls/graphicscapture/main.c b/dlls/graphicscapture/main.c index 42584fef329..4692bd089d0 100644 --- a/dlls/graphicscapture/main.c +++ b/dlls/graphicscapture/main.c @@ -24,20 +24,11 @@
WINE_DEFAULT_DEBUG_CHANNEL(graphicscapture);
-static const char *debugstr_hstring( HSTRING hstr ) -{ - const WCHAR *str; - UINT32 len; - if (hstr && !((ULONG_PTR)hstr >> 16)) return "(invalid)"; - str = WindowsGetStringRawBuffer( hstr, &len ); - return wine_dbgstr_wn( str, len ); -} - HRESULT WINAPI DllGetActivationFactory( HSTRING classid, IActivationFactory **factory ) { const WCHAR *buffer = WindowsGetStringRawBuffer( classid, NULL );
- TRACE( "class %s, factory %p.\n", debugstr_hstring(classid), factory ); + TRACE( "class %s, factory %p.\n", wine_dbgstr_h(classid), factory );
*factory = NULL;