mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
865 B
20 lines
865 B
#pragma once
|
|
|
|
#include <ComDef.h>
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
// Error Methods
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
void __cdecl ThrowError(_com_error ce, UINT uId, ...);
|
|
void __cdecl ThrowError(_com_error ce, LPCTSTR pszFormat = NULL, ...);
|
|
void __cdecl ThrowError(const CLSID& clsid, const IID& iid, _com_error ce, UINT uId, ...);
|
|
void __cdecl ThrowError(const CLSID& clsid, const IID& iid, _com_error ce, LPCTSTR pszFormat = NULL, ...);
|
|
|
|
|
|
HRESULT __cdecl SetError(_com_error ce, UINT uId, ...);
|
|
HRESULT __cdecl SetError(_com_error ce, LPCTSTR pszFormat = NULL, ...);
|
|
HRESULT __cdecl SetError(const CLSID& clsid, const IID& iid, _com_error ce, UINT uId, ...);
|
|
HRESULT __cdecl SetError(const CLSID& clsid, const IID& iid, _com_error ce, LPCTSTR pszFormat = NULL, ...);
|