equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MMMTPENUMERATIONCALLBACK_H |
|
20 #define MMMTPENUMERATIONCALLBACK_H |
|
21 |
|
22 #include <e32std.h> |
|
23 |
|
24 /** |
|
25 * Defines the enumeration complete notification interface. |
|
26 */ |
|
27 class MMTPEnumerationCallback |
|
28 { |
|
29 public: |
|
30 |
|
31 /** |
|
32 * Notifies that enumeration of the specified storage is completed. |
|
33 * @param aStorageId The MTP StorageID of the enumerated storage. |
|
34 * @param aError The enumeration completion error status. |
|
35 */ |
|
36 virtual void NotifyEnumerationCompleteL( TUint32 aStorageId, TInt aError ) = 0; |
|
37 |
|
38 }; |
|
39 |
|
40 #endif // MMMTPENUMERATIONCALLBACK_H |