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.
amarok/amarok/src/engine/helix/helix-sp/hsperror.h

71 lines
1.7 KiB

/*
*
* This software is released under the provisions of the GPL version 2.
* see file "COPYING". If that file is not available, the full statement
* of the license can be found at
*
* http://www.fsf.org/licensing/licenses/gpl.txt
*
* Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved.
* Portions (c) Paul Cifarelli 2005
*
*/
#ifndef _HSPERROR_
#define _HSPERROR_
struct IUnknown;
struct IHXErrorMessages;
struct IHXPlayer;
class HelixSimplePlayer;
class HSPErrorSink : public IHXErrorSink
{
public:
HSPErrorSink(IUnknown* pUnknown, HelixSimplePlayer *pSplay);
virtual ~HSPErrorSink();
/*
* IUnknown methods
*/
STDTQT_METHOD(QueryInterface) (THIS_
REFIID riid,
void** ppvObj);
STDMETHOD_(ULONG32,AddRef) (THIS);
STDMETHOD_(ULONG32,Release) (THIS);
/*
* IHXErrorSink methods
*/
/************************************************************************
* Method:
* IHXErrorSink::ErrorOccurred
* Purpose:
* After you have registered your error sink with an IHXErrorSinkControl
* (either in the server or player core) this method will be called to
* report an error, event, or status message.
*
* The meaning of the arguments is exactly as described in
* hxerror.h
*/
STDTQT_METHOD(ErrorOccurred) (THIS_
const UINT8 unSeverity,
const ULONG32 ulHXCode,
const ULONG32 ulUserCode,
const char* pUserString,
const char* pMoreInfoURL
);
protected:
LONG32 m_lRefCount;
IHXPlayer* m_pPlayer;
HelixSimplePlayer *m_splayer;
void ConvertErrorToString (const ULONG32 ulHXCode, char* pszBuffer, UINT32 ulBufLen);
};
#endif