msdaps: Always initialize error pointers in proxies.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2b5390290c
commit
b50342ed53
|
@ -40,8 +40,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(oledb);
|
||||||
HRESULT CALLBACK IDBCreateCommand_CreateCommand_Proxy(IDBCreateCommand* This, IUnknown *pUnkOuter,
|
HRESULT CALLBACK IDBCreateCommand_CreateCommand_Proxy(IDBCreateCommand* This, IUnknown *pUnkOuter,
|
||||||
REFIID riid, IUnknown **ppCommand)
|
REFIID riid, IUnknown **ppCommand)
|
||||||
{
|
{
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
|
|
||||||
TRACE("(%p, %p, %s, %p)\n", This, pUnkOuter, debugstr_guid(riid), ppCommand);
|
TRACE("(%p, %p, %s, %p)\n", This, pUnkOuter, debugstr_guid(riid), ppCommand);
|
||||||
hr = IDBCreateCommand_RemoteCreateCommand_Proxy(This, pUnkOuter, riid, ppCommand, &error);
|
hr = IDBCreateCommand_RemoteCreateCommand_Proxy(This, pUnkOuter, riid, ppCommand, &error);
|
||||||
|
@ -70,8 +70,8 @@ HRESULT __RPC_STUB IDBCreateCommand_CreateCommand_Stub(IDBCreateCommand* This, I
|
||||||
HRESULT CALLBACK IDBCreateSession_CreateSession_Proxy(IDBCreateSession* This, IUnknown *pUnkOuter,
|
HRESULT CALLBACK IDBCreateSession_CreateSession_Proxy(IDBCreateSession* This, IUnknown *pUnkOuter,
|
||||||
REFIID riid, IUnknown **ppDBSession)
|
REFIID riid, IUnknown **ppDBSession)
|
||||||
{
|
{
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
|
|
||||||
TRACE("(%p, %p, %s, %p)\n", This, pUnkOuter, debugstr_guid(riid), ppDBSession);
|
TRACE("(%p, %p, %s, %p)\n", This, pUnkOuter, debugstr_guid(riid), ppDBSession);
|
||||||
hr = IDBCreateSession_RemoteCreateSession_Proxy(This, pUnkOuter, riid, ppDBSession, &error);
|
hr = IDBCreateSession_RemoteCreateSession_Proxy(This, pUnkOuter, riid, ppDBSession, &error);
|
||||||
|
@ -100,8 +100,8 @@ HRESULT __RPC_STUB IDBCreateSession_CreateSession_Stub(IDBCreateSession* This, I
|
||||||
HRESULT CALLBACK IDBProperties_GetProperties_Proxy(IDBProperties* This, ULONG cPropertyIDSets, const DBPROPIDSET rgPropertyIDSets[],
|
HRESULT CALLBACK IDBProperties_GetProperties_Proxy(IDBProperties* This, ULONG cPropertyIDSets, const DBPROPIDSET rgPropertyIDSets[],
|
||||||
ULONG *pcPropertySets, DBPROPSET **prgPropertySets)
|
ULONG *pcPropertySets, DBPROPSET **prgPropertySets)
|
||||||
{
|
{
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
|
|
||||||
TRACE("(%p, %d, %p, %p, %p)\n", This, cPropertyIDSets, rgPropertyIDSets, pcPropertySets,
|
TRACE("(%p, %d, %p, %p, %p)\n", This, cPropertyIDSets, rgPropertyIDSets, pcPropertySets,
|
||||||
prgPropertySets);
|
prgPropertySets);
|
||||||
|
@ -153,8 +153,8 @@ HRESULT __RPC_STUB IDBProperties_GetPropertyInfo_Stub(IDBProperties* This, ULONG
|
||||||
HRESULT CALLBACK IDBProperties_SetProperties_Proxy(IDBProperties* This, ULONG cPropertySets, DBPROPSET rgPropertySets[])
|
HRESULT CALLBACK IDBProperties_SetProperties_Proxy(IDBProperties* This, ULONG cPropertySets, DBPROPSET rgPropertySets[])
|
||||||
{
|
{
|
||||||
ULONG prop_set, prop, total_props = 0;
|
ULONG prop_set, prop, total_props = 0;
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
DBPROPSTATUS *status;
|
DBPROPSTATUS *status;
|
||||||
|
|
||||||
TRACE("(%p, %d, %p)\n", This, cPropertySets, rgPropertySets);
|
TRACE("(%p, %d, %p)\n", This, cPropertySets, rgPropertySets);
|
||||||
|
@ -206,8 +206,8 @@ HRESULT __RPC_STUB IDBProperties_SetProperties_Stub(IDBProperties* This, ULONG c
|
||||||
|
|
||||||
HRESULT CALLBACK IDBInitialize_Initialize_Proxy(IDBInitialize* This)
|
HRESULT CALLBACK IDBInitialize_Initialize_Proxy(IDBInitialize* This)
|
||||||
{
|
{
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
|
|
||||||
TRACE("(%p)\n", This);
|
TRACE("(%p)\n", This);
|
||||||
hr = IDBInitialize_RemoteInitialize_Proxy(This, &error);
|
hr = IDBInitialize_RemoteInitialize_Proxy(This, &error);
|
||||||
|
@ -233,7 +233,7 @@ HRESULT __RPC_STUB IDBInitialize_Initialize_Stub(IDBInitialize* This, IErrorInfo
|
||||||
|
|
||||||
HRESULT CALLBACK IDBInitialize_Uninitialize_Proxy(IDBInitialize* This)
|
HRESULT CALLBACK IDBInitialize_Uninitialize_Proxy(IDBInitialize* This)
|
||||||
{
|
{
|
||||||
IErrorInfo *error;
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
||||||
TRACE("(%p)\n", This);
|
TRACE("(%p)\n", This);
|
||||||
|
@ -263,8 +263,8 @@ HRESULT CALLBACK IDBDataSourceAdmin_CreateDataSource_Proxy(IDBDataSourceAdmin* T
|
||||||
REFIID riid, IUnknown **ppDBSession)
|
REFIID riid, IUnknown **ppDBSession)
|
||||||
{
|
{
|
||||||
ULONG prop_set, prop, total_props = 0;
|
ULONG prop_set, prop, total_props = 0;
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
DBPROPSTATUS *status;
|
DBPROPSTATUS *status;
|
||||||
|
|
||||||
TRACE("(%p, %d, %p, %p, %s, %p)\n", This, cPropertySets, rgPropertySets, pUnkOuter,
|
TRACE("(%p, %d, %p, %p, %s, %p)\n", This, cPropertySets, rgPropertySets, pUnkOuter,
|
||||||
|
@ -319,7 +319,7 @@ HRESULT __RPC_STUB IDBDataSourceAdmin_CreateDataSource_Stub(IDBDataSourceAdmin*
|
||||||
|
|
||||||
HRESULT CALLBACK IDBDataSourceAdmin_DestroyDataSource_Proxy(IDBDataSourceAdmin* This)
|
HRESULT CALLBACK IDBDataSourceAdmin_DestroyDataSource_Proxy(IDBDataSourceAdmin* This)
|
||||||
{
|
{
|
||||||
IErrorInfo *error;
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
||||||
TRACE("(%p)\n", This);
|
TRACE("(%p)\n", This);
|
||||||
|
@ -373,7 +373,7 @@ HRESULT __RPC_STUB IDBDataSourceAdmin_GetCreationProperties_Stub(IDBDataSourceAd
|
||||||
|
|
||||||
HRESULT CALLBACK IDBDataSourceAdmin_ModifyDataSource_Proxy(IDBDataSourceAdmin* This, ULONG cPropertySets, DBPROPSET rgPropertySets[])
|
HRESULT CALLBACK IDBDataSourceAdmin_ModifyDataSource_Proxy(IDBDataSourceAdmin* This, ULONG cPropertySets, DBPROPSET rgPropertySets[])
|
||||||
{
|
{
|
||||||
IErrorInfo *error;
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
||||||
TRACE("(%p, %d, %p)\n", This, cPropertySets, rgPropertySets);
|
TRACE("(%p, %d, %p)\n", This, cPropertySets, rgPropertySets);
|
||||||
|
@ -404,7 +404,7 @@ HRESULT CALLBACK ISessionProperties_GetProperties_Proxy(ISessionProperties* This
|
||||||
const DBPROPIDSET rgPropertyIDSets[], ULONG *pcPropertySets,
|
const DBPROPIDSET rgPropertyIDSets[], ULONG *pcPropertySets,
|
||||||
DBPROPSET **prgPropertySets)
|
DBPROPSET **prgPropertySets)
|
||||||
{
|
{
|
||||||
IErrorInfo *error;
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
||||||
TRACE("(%p, %d, %p, %p, %p)\n", This, cPropertyIDSets, rgPropertyIDSets,
|
TRACE("(%p, %d, %p, %p, %p)\n", This, cPropertyIDSets, rgPropertyIDSets,
|
||||||
|
@ -439,8 +439,8 @@ HRESULT __RPC_STUB ISessionProperties_GetProperties_Stub(ISessionProperties* Thi
|
||||||
HRESULT CALLBACK ISessionProperties_SetProperties_Proxy(ISessionProperties* This, ULONG cPropertySets, DBPROPSET rgPropertySets[])
|
HRESULT CALLBACK ISessionProperties_SetProperties_Proxy(ISessionProperties* This, ULONG cPropertySets, DBPROPSET rgPropertySets[])
|
||||||
{
|
{
|
||||||
ULONG prop_set, prop, total_props = 0;
|
ULONG prop_set, prop, total_props = 0;
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
DBPROPSTATUS *status;
|
DBPROPSTATUS *status;
|
||||||
|
|
||||||
TRACE("(%p, %d, %p)\n", This, cPropertySets, rgPropertySets);
|
TRACE("(%p, %d, %p)\n", This, cPropertySets, rgPropertySets);
|
||||||
|
@ -662,8 +662,8 @@ HRESULT CALLBACK IAccessor_CreateAccessor_Proxy(IAccessor* This, DBACCESSORFLAGS
|
||||||
const DBBINDING rgBindings[], DBLENGTH cbRowSize, HACCESSOR *phAccessor,
|
const DBBINDING rgBindings[], DBLENGTH cbRowSize, HACCESSOR *phAccessor,
|
||||||
DBBINDSTATUS rgStatus[])
|
DBBINDSTATUS rgStatus[])
|
||||||
{
|
{
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
DBCOUNTITEM i;
|
DBCOUNTITEM i;
|
||||||
|
|
||||||
TRACE("(%p)->(%08x, %ld, %p, %ld, %p, %p)\n", This, dwAccessorFlags, cBindings, rgBindings,
|
TRACE("(%p)->(%08x, %ld, %p, %ld, %p, %p)\n", This, dwAccessorFlags, cBindings, rgBindings,
|
||||||
|
@ -721,8 +721,8 @@ HRESULT __RPC_STUB IAccessor_GetBindings_Stub(IAccessor* This, HACCESSOR hAccess
|
||||||
|
|
||||||
HRESULT CALLBACK IAccessor_ReleaseAccessor_Proxy(IAccessor* This, HACCESSOR hAccessor, DBREFCOUNT *pcRefCount)
|
HRESULT CALLBACK IAccessor_ReleaseAccessor_Proxy(IAccessor* This, HACCESSOR hAccessor, DBREFCOUNT *pcRefCount)
|
||||||
{
|
{
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
DBREFCOUNT ref;
|
DBREFCOUNT ref;
|
||||||
|
|
||||||
TRACE("(%p)->(%lx, %p)\n", This, hAccessor, pcRefCount);
|
TRACE("(%p)->(%lx, %p)\n", This, hAccessor, pcRefCount);
|
||||||
|
@ -756,8 +756,8 @@ HRESULT __RPC_STUB IAccessor_ReleaseAccessor_Stub(IAccessor* This, HACCESSOR hAc
|
||||||
HRESULT CALLBACK IRowsetInfo_GetProperties_Proxy(IRowsetInfo* This, const ULONG cPropertyIDSets, const DBPROPIDSET rgPropertyIDSets[],
|
HRESULT CALLBACK IRowsetInfo_GetProperties_Proxy(IRowsetInfo* This, const ULONG cPropertyIDSets, const DBPROPIDSET rgPropertyIDSets[],
|
||||||
ULONG *pcPropertySets, DBPROPSET **prgPropertySets)
|
ULONG *pcPropertySets, DBPROPSET **prgPropertySets)
|
||||||
{
|
{
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
ULONG i;
|
ULONG i;
|
||||||
|
|
||||||
TRACE("(%p)->(%d, %p, %p, %p)\n", This, cPropertyIDSets, rgPropertyIDSets, pcPropertySets, prgPropertySets);
|
TRACE("(%p)->(%d, %p, %p, %p)\n", This, cPropertyIDSets, rgPropertyIDSets, pcPropertySets, prgPropertySets);
|
||||||
|
@ -797,7 +797,7 @@ HRESULT __RPC_STUB IRowsetInfo_GetProperties_Stub(IRowsetInfo* This, ULONG cProp
|
||||||
|
|
||||||
HRESULT CALLBACK IRowsetInfo_GetReferencedRowset_Proxy(IRowsetInfo* This, DBORDINAL iOrdinal, REFIID riid, IUnknown **ppReferencedRowset)
|
HRESULT CALLBACK IRowsetInfo_GetReferencedRowset_Proxy(IRowsetInfo* This, DBORDINAL iOrdinal, REFIID riid, IUnknown **ppReferencedRowset)
|
||||||
{
|
{
|
||||||
IErrorInfo *error;
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
||||||
TRACE("(%p)->(%ld, %s, %p)\n", This, iOrdinal, debugstr_guid(riid), ppReferencedRowset);
|
TRACE("(%p)->(%ld, %s, %p)\n", This, iOrdinal, debugstr_guid(riid), ppReferencedRowset);
|
||||||
|
@ -827,7 +827,7 @@ HRESULT __RPC_STUB IRowsetInfo_GetReferencedRowset_Stub(IRowsetInfo* This, DBORD
|
||||||
|
|
||||||
HRESULT CALLBACK IRowsetInfo_GetSpecification_Proxy(IRowsetInfo* This, REFIID riid, IUnknown **ppSpecification)
|
HRESULT CALLBACK IRowsetInfo_GetSpecification_Proxy(IRowsetInfo* This, REFIID riid, IUnknown **ppSpecification)
|
||||||
{
|
{
|
||||||
IErrorInfo *error;
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
||||||
TRACE("(%p)->(%s, %p)\n", This, debugstr_guid(riid), ppSpecification);
|
TRACE("(%p)->(%s, %p)\n", This, debugstr_guid(riid), ppSpecification);
|
||||||
|
@ -856,7 +856,7 @@ HRESULT __RPC_STUB IRowsetInfo_GetSpecification_Stub(IRowsetInfo* This, REFIID r
|
||||||
|
|
||||||
HRESULT CALLBACK ICommand_Cancel_Proxy(ICommand* This)
|
HRESULT CALLBACK ICommand_Cancel_Proxy(ICommand* This)
|
||||||
{
|
{
|
||||||
IErrorInfo *error;
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
||||||
TRACE("(%p)\n", This);
|
TRACE("(%p)\n", This);
|
||||||
|
@ -956,7 +956,7 @@ HRESULT __RPC_STUB ICommand_Execute_Stub(ICommand* This, IUnknown *pUnkOuter, RE
|
||||||
|
|
||||||
HRESULT CALLBACK ICommand_GetDBSession_Proxy(ICommand* This, REFIID riid, IUnknown **ppSession)
|
HRESULT CALLBACK ICommand_GetDBSession_Proxy(ICommand* This, REFIID riid, IUnknown **ppSession)
|
||||||
{
|
{
|
||||||
IErrorInfo *error;
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
||||||
TRACE("(%p)->(%s, %p)\n", This, debugstr_guid(riid), ppSession);
|
TRACE("(%p)->(%s, %p)\n", This, debugstr_guid(riid), ppSession);
|
||||||
|
@ -985,7 +985,7 @@ HRESULT __RPC_STUB ICommand_GetDBSession_Stub(ICommand* This, REFIID riid, IUnkn
|
||||||
|
|
||||||
HRESULT CALLBACK ICommandText_GetCommandText_Proxy(ICommandText* This, GUID *pguidDialect, LPOLESTR *ppwszCommand)
|
HRESULT CALLBACK ICommandText_GetCommandText_Proxy(ICommandText* This, GUID *pguidDialect, LPOLESTR *ppwszCommand)
|
||||||
{
|
{
|
||||||
IErrorInfo *error;
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
||||||
TRACE("(%p)->(%p, %p)\n", This, pguidDialect, ppwszCommand);
|
TRACE("(%p)->(%p, %p)\n", This, pguidDialect, ppwszCommand);
|
||||||
|
@ -1015,8 +1015,8 @@ HRESULT __RPC_STUB ICommandText_GetCommandText_Stub(ICommandText* This, GUID *pg
|
||||||
|
|
||||||
HRESULT CALLBACK ICommandText_SetCommandText_Proxy(ICommandText* This, REFGUID rguidDialect, LPCOLESTR pwszCommand)
|
HRESULT CALLBACK ICommandText_SetCommandText_Proxy(ICommandText* This, REFGUID rguidDialect, LPCOLESTR pwszCommand)
|
||||||
{
|
{
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
|
|
||||||
TRACE("(%p)->(%s, %s)\n", This, debugstr_guid(rguidDialect), debugstr_w(pwszCommand));
|
TRACE("(%p)->(%s, %s)\n", This, debugstr_guid(rguidDialect), debugstr_w(pwszCommand));
|
||||||
|
|
||||||
|
@ -1093,7 +1093,7 @@ HRESULT __RPC_STUB IDBAsynchNotify_OnStop_Stub(IDBAsynchNotify* This, HCHAPTER h
|
||||||
|
|
||||||
HRESULT CALLBACK IDBAsynchStatus_Abort_Proxy(IDBAsynchStatus* This, HCHAPTER hChapter, DBASYNCHOP eOperation)
|
HRESULT CALLBACK IDBAsynchStatus_Abort_Proxy(IDBAsynchStatus* This, HCHAPTER hChapter, DBASYNCHOP eOperation)
|
||||||
{
|
{
|
||||||
IErrorInfo *error;
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
||||||
TRACE("(%p)->(%lx, %d)\n", This, hChapter, eOperation);
|
TRACE("(%p)->(%lx, %d)\n", This, hChapter, eOperation);
|
||||||
|
@ -1125,7 +1125,7 @@ HRESULT CALLBACK IDBAsynchStatus_GetStatus_Proxy(IDBAsynchStatus* This, HCHAPTER
|
||||||
DBCOUNTITEM *pulProgress, DBCOUNTITEM *pulProgressMax, DBASYNCHPHASE *peAsynchPhase,
|
DBCOUNTITEM *pulProgress, DBCOUNTITEM *pulProgressMax, DBASYNCHPHASE *peAsynchPhase,
|
||||||
LPOLESTR *ppwszStatusText)
|
LPOLESTR *ppwszStatusText)
|
||||||
{
|
{
|
||||||
IErrorInfo *error;
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
||||||
TRACE("(%p)->(%lx, %d, %p, %p, %p, %p)\n", This, hChapter, eOperation, pulProgress, pulProgressMax,
|
TRACE("(%p)->(%lx, %d, %p, %p, %p, %p)\n", This, hChapter, eOperation, pulProgress, pulProgressMax,
|
||||||
|
@ -1201,8 +1201,8 @@ HRESULT __RPC_STUB IRowsetNotify_OnRowsetChange_Stub(IRowsetNotify* This, IRowse
|
||||||
HRESULT CALLBACK ISourcesRowset_GetSourcesRowset_Proxy(ISourcesRowset* This, IUnknown *pUnkOuter, REFIID riid, ULONG cPropertySets,
|
HRESULT CALLBACK ISourcesRowset_GetSourcesRowset_Proxy(ISourcesRowset* This, IUnknown *pUnkOuter, REFIID riid, ULONG cPropertySets,
|
||||||
DBPROPSET rgProperties[], IUnknown **ppSourcesRowset)
|
DBPROPSET rgProperties[], IUnknown **ppSourcesRowset)
|
||||||
{
|
{
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
|
|
||||||
TRACE("(%p)->(%p %s %d %p %p)\n", This, pUnkOuter, debugstr_guid(riid), cPropertySets, rgProperties, ppSourcesRowset);
|
TRACE("(%p)->(%p %s %d %p %p)\n", This, pUnkOuter, debugstr_guid(riid), cPropertySets, rgProperties, ppSourcesRowset);
|
||||||
|
|
||||||
|
@ -1235,8 +1235,8 @@ HRESULT __RPC_STUB ISourcesRowset_GetSourcesRowset_Stub(ISourcesRowset* This, IU
|
||||||
|
|
||||||
HRESULT CALLBACK IErrorRecords_GetRecordCount_Proxy(IErrorRecords* This, ULONG *records)
|
HRESULT CALLBACK IErrorRecords_GetRecordCount_Proxy(IErrorRecords* This, ULONG *records)
|
||||||
{
|
{
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
|
|
||||||
TRACE("(%p)->%p\n", This, records);
|
TRACE("(%p)->%p\n", This, records);
|
||||||
|
|
||||||
|
@ -1266,8 +1266,8 @@ HRESULT __RPC_STUB IErrorRecords_GetRecordCount_Stub(IErrorRecords* This, ULONG
|
||||||
|
|
||||||
HRESULT CALLBACK IErrorRecords_GetErrorParameters_Proxy(IErrorRecords* This, ULONG ulRecordNum, DISPPARAMS *pdispparams)
|
HRESULT CALLBACK IErrorRecords_GetErrorParameters_Proxy(IErrorRecords* This, ULONG ulRecordNum, DISPPARAMS *pdispparams)
|
||||||
{
|
{
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
|
|
||||||
TRACE("(%p)->%d %p\n", This, ulRecordNum, pdispparams);
|
TRACE("(%p)->%d %p\n", This, ulRecordNum, pdispparams);
|
||||||
|
|
||||||
|
@ -1298,8 +1298,8 @@ HRESULT __RPC_STUB IErrorRecords_GetErrorParameters_Stub(IErrorRecords* This, UL
|
||||||
|
|
||||||
HRESULT CALLBACK IErrorRecords_GetErrorInfo_Proxy(IErrorRecords* This, ULONG ulRecordNum, LCID lcid, IErrorInfo **ppErrorInfo)
|
HRESULT CALLBACK IErrorRecords_GetErrorInfo_Proxy(IErrorRecords* This, ULONG ulRecordNum, LCID lcid, IErrorInfo **ppErrorInfo)
|
||||||
{
|
{
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
|
|
||||||
TRACE("(%p)->%d %d %p\n", This, ulRecordNum, lcid, ppErrorInfo);
|
TRACE("(%p)->%d %d %p\n", This, ulRecordNum, lcid, ppErrorInfo);
|
||||||
|
|
||||||
|
@ -1331,8 +1331,8 @@ HRESULT __RPC_STUB IErrorRecords_GetErrorInfo_Stub(IErrorRecords* This, ULONG ul
|
||||||
HRESULT CALLBACK IErrorRecords_GetCustomErrorObject_Proxy(IErrorRecords* This, ULONG ulRecordNum, REFIID riid,
|
HRESULT CALLBACK IErrorRecords_GetCustomErrorObject_Proxy(IErrorRecords* This, ULONG ulRecordNum, REFIID riid,
|
||||||
IUnknown **ppObject)
|
IUnknown **ppObject)
|
||||||
{
|
{
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
|
|
||||||
TRACE("(%p)->%d %s %p\n", This, ulRecordNum, debugstr_guid(riid), ppObject);
|
TRACE("(%p)->%d %s %p\n", This, ulRecordNum, debugstr_guid(riid), ppObject);
|
||||||
|
|
||||||
|
@ -1395,8 +1395,8 @@ HRESULT __RPC_STUB IErrorRecords_GetBasicErrorInfo_Stub(IErrorRecords* This, ULO
|
||||||
HRESULT CALLBACK IErrorRecords_AddErrorRecord_Proxy(IErrorRecords* This, ERRORINFO *pErrorInfo, DWORD dwLookupID,
|
HRESULT CALLBACK IErrorRecords_AddErrorRecord_Proxy(IErrorRecords* This, ERRORINFO *pErrorInfo, DWORD dwLookupID,
|
||||||
DISPPARAMS *pdispparams, IUnknown *punkCustomError, DWORD dwDynamicErrorID)
|
DISPPARAMS *pdispparams, IUnknown *punkCustomError, DWORD dwDynamicErrorID)
|
||||||
{
|
{
|
||||||
|
IErrorInfo *error = NULL;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IErrorInfo *error;
|
|
||||||
|
|
||||||
TRACE("(%p)->%p %d %p %p %d\n", This, pErrorInfo, dwLookupID, pdispparams, punkCustomError, dwDynamicErrorID);
|
TRACE("(%p)->%p %d %p %p %d\n", This, pErrorInfo, dwLookupID, pdispparams, punkCustomError, dwDynamicErrorID);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue