os/kernelhwsrv/userlibandfileserver/fileserver/shostmassstorage/shared/msgservice.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Shared message service definitions 
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalTechnology
sl@0
    21
*/
sl@0
    22
sl@0
    23
#ifndef __HOSTUSBMSMSGSERVICE_H__
sl@0
    24
#define __HOSTUSBMSMSGSERVICE_H__
sl@0
    25
sl@0
    26
/**
sl@0
    27
Package structure for a Read or Write request
sl@0
    28
*/
sl@0
    29
struct TReadWrite
sl@0
    30
    {
sl@0
    31
    /** position */
sl@0
    32
	TInt64 iPos;
sl@0
    33
    /** Length */
sl@0
    34
	TInt iLen;
sl@0
    35
    };
sl@0
    36
sl@0
    37
sl@0
    38
const TInt KUsbHostMsSrvMajorVersionNumber = 1;
sl@0
    39
const TInt KUsbHostMsSrvMinorVersionNumber = 0;
sl@0
    40
const TInt KUsbHostMsSrvBuildVersionNumber = 0;
sl@0
    41
sl@0
    42
_LIT(KUsbHostMsServerName, "usbhostmssrv");
sl@0
    43
sl@0
    44
/** Types of requests Host USB mass storage file extention and MM can make */
sl@0
    45
enum TUsbHostMsReqType
sl@0
    46
	{
sl@0
    47
	EUsbHostMsRegisterInterface,	// Adds the mass storage device to the server
sl@0
    48
	EUsbHostMsInitialiseInterface,	// Initialises the interface with the transport and setsup async call for GetMaxLun
sl@0
    49
	EUsbHostMsUnRegisterInterface,	// Removes the mass storage device from the server
sl@0
    50
	EUsbHostMsFinalCleanup,	// Called after unregistering the interface to cleanup any final bits in the session
sl@0
    51
	EUsbHostMsGetNumLun,	// Gets the maximum lun for found in the MS device
sl@0
    52
	EUsbHostMsRegisterLun,	// Opens a subsession and registers the LunId
sl@0
    53
	EUsbHostMsUnRegisterLun,// Closes the subsession
sl@0
    54
	EUsbHostMsShutdown,		// Shuts down the server
sl@0
    55
	EUsbHostMsNotifyChange,	// Registers with MSC to get any media change notifications
sl@0
    56
	EUsbHostMsSuspendLun,	// Requests MSC to suspend the logical unit and registers with MSC to invoke when resumed
sl@0
    57
	EUsbHostMsCapacity,		// Get the logical unit or device capacity
sl@0
    58
	EUsbHostMsRead,			// Do a read on the logical unit or device
sl@0
    59
	EUsbHostMsWrite,		// Do a write to the logical unit or device
sl@0
    60
    EUsbHostMsErase,        // Erase an area on the logical unit or device
sl@0
    61
    EUsbHostMsForceRemount, // Force a remount of the drive
sl@0
    62
	EUsbHostMsCancelChangeNotifier, // Cancel the media change notifier
sl@0
    63
	EUsbHostMsLast		    // This should always be at the end of the enum
sl@0
    64
	};
sl@0
    65
sl@0
    66
#endif //__HOSTUSBMSMSGSERVICE_H__