/******************************************************** * * * Copyright (C) Microsoft. All rights reserved. * * * ********************************************************/ //----------------------------------------------------------------------------- // File: sqleri.idl // // Contents: OLE DB interface definition // // Comments: // //----------------------------------------------------------------------------- cpp_quote("#include ") #pragma region Desktop Family cpp_quote("#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)") #include "idlmulti.h" // REMOTED_INTERFACE(0c733a74-2a1c-11ce-ade5-00aa0044773d) interface ISQLErrorInfo : IUnknown { [local] HRESULT GetSQLInfo( [out, annotation("_Outptr_")] BSTR * pbstrSQLState, [out, annotation("_Out_")] LONG * plNativeError ); [call_as(GetSQLInfo)] HRESULT RemoteGetSQLInfo( [out] BSTR * pbstrSQLState, [out] LONG * plNativeError, [out] IErrorInfo ** ppErrorInfoRem ); } cpp_quote("#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */") #pragma endregion