From: Aaron Robinson Date: Sun, 7 Apr 2024 02:09:59 +0000 (-0700) Subject: Fix incorrect return type. (#4584) X-Git-Tag: accepted/tizen/unified/20241231.014852~40^2~135 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=909f155c8e464f407fe90d77db6c2f9554f2da2a;p=platform%2Fcore%2Fdotnet%2Fdiagnostics.git Fix incorrect return type. (#4584) --- diff --git a/src/SOS/inc/symbolservice.h b/src/SOS/inc/symbolservice.h index b376178a4..88c47e4b6 100644 --- a/src/SOS/inc/symbolservice.h +++ b/src/SOS/inc/symbolservice.h @@ -15,7 +15,7 @@ extern "C" { /// /// ISymbolService -/// +/// /// Provides symbol related services to SOS. /// MIDL_INTERFACE("7EE88D46-F8B3-4645-AD3E-01FE7D4F70F1") @@ -24,7 +24,7 @@ ISymbolService : public IUnknown public: virtual bool STDMETHODCALLTYPE ParseSymbolPath( const char* windowsSymbolPath) = 0; - + virtual PVOID STDMETHODCALLTYPE LoadSymbolsForModule( LPCWSTR, BOOL, @@ -35,7 +35,7 @@ public: virtual void STDMETHODCALLTYPE Dispose( PVOID) = 0; - + virtual BOOL STDMETHODCALLTYPE ResolveSequencePoint( PVOID, const char*, @@ -59,7 +59,7 @@ public: virtual ULONG64 STDMETHODCALLTYPE GetExpressionValue( PCSTR) = 0; - virtual BOOL STDMETHODCALLTYPE GetMetadataLocator( + virtual HRESULT STDMETHODCALLTYPE GetMetadataLocator( LPCWSTR imagePath, unsigned int imageTimestamp, unsigned int imageSize, @@ -70,7 +70,7 @@ public: PVOID pMetadata, unsigned int* pMetadataSize) = 0; - virtual BOOL STDMETHODCALLTYPE GetICorDebugMetadataLocator( + virtual HRESULT STDMETHODCALLTYPE GetICorDebugMetadataLocator( LPCWSTR imagePath, unsigned int imageTimestamp, unsigned int imageSize,