ERROR.H
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- //-----------------------------------------------------------------------------
- // Microsoft OLE DB TABLECOPY Sample
- // Copyright (C) 1995-1998 Microsoft Corporation
- //
- // @doc
- //
- // @module ERROR.H
- //
- //-----------------------------------------------------------------------------
- #ifndef _ERROR_H_
- #define _ERROR_H_
- ///////////////////////////////////////////////////////////////
- // Includes
- //
- ///////////////////////////////////////////////////////////////
- #include "common.h"
- ////////////////////////////////////////////////////////////////////////////
- // Extened Error Info
- //
- ////////////////////////////////////////////////////////////////////////////
- WCHAR* GetErrorName(HRESULT hr);
- //Get ISQLErrorInfo
- HRESULT GetSqlErrorInfo(ULONG iRecord, IErrorRecords* pIErrorRecords, BSTR* pBstr);
- //Get IErrorRecords
- HRESULT GetErrorRecords(ULONG* pcRecords, IErrorRecords** ppIErrorRecords);
- HRESULT DisplayErrorRecords(HWND hWnd, ULONG cRecords, IErrorRecords* pIErrorRecords, WCHAR* pwszFile = L"Unknown", ULONG ulLine = 0);
- HRESULT DisplayAllErrors(HWND hWnd, HRESULT hr, WCHAR* pwszFile = L"Unknown", ULONG ulLine = 0);
- #endif //_ERROR_H_