1.1 --- a/epoc32/include/remconstatusapicontrollerobserver.h Tue Mar 16 16:12:26 2010 +0000
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,83 +0,0 @@
1.4 -// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 -// All rights reserved.
1.6 -// This component and the accompanying materials are made available
1.7 -// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.8 -// which accompanies this distribution, and is available
1.9 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.10 -//
1.11 -// Initial Contributors:
1.12 -// Nokia Corporation - initial contribution.
1.13 -//
1.14 -// Contributors:
1.15 -//
1.16 -// Description:
1.17 -//
1.18 -
1.19 -
1.20 -
1.21 -/**
1.22 - @file
1.23 - @publishedAll
1.24 - @released
1.25 -*/
1.26 -
1.27 -#ifndef REMCONSTATUSAPICONTROLLEROBSERVER_H
1.28 -#define REMCONSTATUSAPICONTROLLEROBSERVER_H
1.29 -
1.30 -#include <e32std.h>
1.31 -
1.32 -/**
1.33 -Interface to observe responses from a Status API controller.
1.34 -@publishedAll
1.35 -@released
1.36 -*/
1.37 -class MRemConStatusApiControllerObserver
1.38 - {
1.39 -public:
1.40 - /** A UnitInfo response has been received.
1.41 -
1.42 - For details on the meanings on the fields please refer to the
1.43 - AV/C Digital Interface Command Set General Specification,
1.44 - section 11.2.1.
1.45 -
1.46 - If all values are zero there was an error with the command.
1.47 - @param aVendorId The VendorId
1.48 - @param aUnit Unit
1.49 - @param aUnitType UnitType
1.50 - @param aExtendedUnitType Extended Unit type. This data is only
1.51 - valid if Unit type is 0x1e. The second byte is only valid
1.52 - if the first byte is 0xff.
1.53 - */
1.54 - virtual void MrcsacoUnitInfoResponse(TInt aVendorId,
1.55 - TInt aUnit,
1.56 - TInt aUnitType,
1.57 - TInt aExtendedUnitType) = 0;
1.58 -
1.59 - /** A SubunitInfo response has been received.
1.60 -
1.61 - For details on the meanings on the fields please
1.62 - refer to the AV/C Digital Interface Command Set
1.63 - General Specification, section 11.2.2.
1.64 -
1.65 - If all values are zero there was an error with the command.
1.66 - @param aPage Page
1.67 - @param aExtension Extension.
1.68 - @param aPageData Page Data. This data remains valid only for
1.69 - the duration of this call. If the client wishes to store
1.70 - the data it must be copied.
1.71 - */
1.72 - virtual void MrcsacoSubunitInfoResponse(TInt aPage,
1.73 - TInt aExtension,
1.74 - TDesC8& aPageData) = 0;
1.75 -
1.76 - /**
1.77 - Returns a null aObject if the extension is not implemented, or
1.78 - a pointer to another interface if it is.
1.79 -
1.80 - @param aInterface UID of the interface to return
1.81 - @param aObject the container for another interface as specified by aInterface
1.82 - */
1.83 - IMPORT_C virtual void Mrcsaco_ExtensionInterfaceL(TUid aInterface, void*& aObject);
1.84 - };
1.85 -
1.86 -#endif // REMCONSTATUSAPICONTROLLEROBSERVER_H