usbclasses/usbphoneasmodem/classimplementation/inc/usbmscfileshared.h
changeset 0 1e05558e2206
child 2 468cfcb53fd1
equal deleted inserted replaced
-1:000000000000 0:1e05558e2206
       
     1 // Copyright (c) 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 "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 // 
       
    15 // 
       
    16 
       
    17 /**
       
    18  @file
       
    19  @internalTechnology 
       
    20  Shared client/server definitions
       
    21  */
       
    22 
       
    23 #ifndef USBMSCFILESHARED_H
       
    24 #define USBMSCFILESHARED_H
       
    25 
       
    26 #include <e32std.h>
       
    27 
       
    28 const TInt KUsbMsSrvMajorVersionNumber = 1;
       
    29 const TInt KUsbMsSrvMinorVersionNumber = 0;
       
    30 const TInt KUsbMsSrvBuildVersionNumber = 0;
       
    31 
       
    32 const TInt KUsbMsResourceVersion = 0;
       
    33 _LIT(KMscFileServerName, "usbmscfileserver");
       
    34 _LIT(KMscFileServerFileName, "usbmscfileserver.exe");
       
    35 
       
    36 class TMassStorageConfig
       
    37     {
       
    38 public:
       
    39     TBuf<8> iVendorId;
       
    40     TBuf<16> iProductId;
       
    41     TBuf<4> iProductRev;
       
    42     };
       
    43 
       
    44 /** Types of requests USB mass storage class controller can make */
       
    45 enum TMscFileServerReq
       
    46     {
       
    47     EMscFileSetupLu, EMscFileStart, EMscFileStop, EMscFileShutdown,
       
    48     };
       
    49 
       
    50 #endif //USBMSCFILESHARED_H