Leaked source code of windows server 2003
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.
|
|
#ifndef _CUSTERR_H_
#define _CUSTERR_H_
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//
// CUSTERR.H
//
// Copyright 1986-1997 Microsoft Corporation, All Rights Reserved
//
class ICustomErrorMap : public CMTRefCounted { // NOT IMPLEMENTED
//
ICustomErrorMap(const ICustomErrorMap&); ICustomErrorMap& operator=(ICustomErrorMap&);
protected: // CREATORS
// Only create this object through it's descendents!
//
ICustomErrorMap() { m_cRef = 1; //$HACK Until we have 1-based refcounting
};
public: virtual BOOL FDoResponse( IResponse& response, const IEcb& ) const = 0; };
ICustomErrorMap * NewCustomErrorMap( LPWSTR pwszCustomErrorMappings );
class IEcb; class IResponse;
BOOL FSetCustomErrorResponse( const IEcb& ecb, IResponse& response );
#endif // _CUSTERR_H_
|