| 0 |      1 | // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
 | 
|  |      2 | // All rights reserved.
 | 
|  |      3 | // This component and the accompanying materials are made available
 | 
|  |      4 | // under the terms of the License "Eclipse Public License v1.0"
 | 
|  |      5 | // which accompanies this distribution, and is available
 | 
|  |      6 | // at the URL "http://www.eclipse.org/legal/epl-v10.html".
 | 
|  |      7 | //
 | 
|  |      8 | // Initial Contributors:
 | 
|  |      9 | // Nokia Corporation - initial contribution.
 | 
|  |     10 | //
 | 
|  |     11 | // Contributors:
 | 
|  |     12 | //
 | 
|  |     13 | // Description:
 | 
|  |     14 | // Definitions required for RUsbMassStorage
 | 
|  |     15 | // 
 | 
|  |     16 | //
 | 
|  |     17 | 
 | 
|  |     18 | /**
 | 
|  |     19 |  @file
 | 
|  |     20 | */
 | 
|  |     21 | 
 | 
|  |     22 | #ifndef __RUSBMASSSTORAGE_H__
 | 
|  |     23 | #define __RUSBMASSSTORAGE_H__
 | 
|  |     24 | 
 | 
|  |     25 | #include <e32std.h>
 | 
|  |     26 | #include "usbmsshared.h"
 | 
|  |     27 | 
 | 
|  |     28 | const TUid KUsbMsSvrUid = {0x101f7774};
 | 
|  |     29 | 
 | 
|  |     30 | #ifdef __USBMS_NO_PROCESSES__
 | 
|  |     31 | 
 | 
|  |     32 | const TUint KUsbMsStackSize =   0x3000;			//  12KB
 | 
|  |     33 | const TUint KUsbMsMinHeapSize = 0x1000;		    //   4KB
 | 
|  |     34 | const TUint KUsbMsMaxHeapSize = 0x40000;		// 256KB
 | 
|  |     35 | 
 | 
|  |     36 | _LIT(KUsbMsImg, "usbmsserver");
 | 
|  |     37 | 
 | 
|  |     38 | #else
 | 
|  |     39 | 
 | 
|  |     40 | _LIT(KUsbMsImg1, "usbmsserver.exe");
 | 
|  |     41 | _LIT(KUsbMsImg, "z:\\system\\programs\\usbmsserver.exe");
 | 
|  |     42 | 
 | 
|  |     43 | #endif //__USBMS_NO_PROCESSES__
 | 
|  |     44 | 
 | 
|  |     45 | #endif //__RUSBMASSSTORAGE_H__
 |