/*++ Copyright (c) 1998-2002 Microsoft Corporation. All rights reserved. --*/ #ifndef MY_AUTH_FILTER_IMPL_H_ #define My_AUTH_FILTER_IMPL_H_ class CMyAuthFilterImpl { public: CMyAuthFilterImpl(); virtual ~CMyAuthFilterImpl(); DWORD OnAuthentication( PHTTP_FILTER_CONTEXT pfc, PWPX_FILTER_AUTHENT_EX pAuth ); DWORD OnEndOfRequest( PHTTP_FILTER_CONTEXT pfc); HRESULT Init(); HRESULT Reload(); HRESULT Shutdown(); }; #endif // MY_AUTH_FILTER_IMPL_H_