sl@0
|
1 |
/**
|
sl@0
|
2 |
* Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* File Name: f32test/fileshare/handshare64bit.h
|
sl@0
|
16 |
* Client side Interface for the 64bit file handle server
|
sl@0
|
17 |
* used by t_file64bit.cpp
|
sl@0
|
18 |
*
|
sl@0
|
19 |
*
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
|
sl@0
|
25 |
#ifndef __HANDSHARE64BIT_H__
|
sl@0
|
26 |
#define __HANDSHARE64BIT_H__
|
sl@0
|
27 |
#include <e32base.h>
|
sl@0
|
28 |
#include <f32file.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
class RFileHandleSharer64Bit : public RSessionBase
|
sl@0
|
31 |
{
|
sl@0
|
32 |
public:
|
sl@0
|
33 |
enum TMessage
|
sl@0
|
34 |
{
|
sl@0
|
35 |
EMsgGetFileHandleLargeFile,
|
sl@0
|
36 |
EMsgPassFileHandleProcessLargeFileClient,
|
sl@0
|
37 |
EMsgPassFileHandleProcessLargeFileCreator,
|
sl@0
|
38 |
EMsgExit,
|
sl@0
|
39 |
EMsgSync,
|
sl@0
|
40 |
EMsgDrive
|
sl@0
|
41 |
};
|
sl@0
|
42 |
public:
|
sl@0
|
43 |
TInt Connect();
|
sl@0
|
44 |
TInt SetTestDrive(TInt aDrive);
|
sl@0
|
45 |
TInt GetFileHandleLargeFile2(TInt &aHandle, TFileMode aFileMode);
|
sl@0
|
46 |
TInt PassFileHandleProcessLargeFileClient(TIpcArgs& aIpcArgs);
|
sl@0
|
47 |
TInt PassFileHandleProcessLargeFileCreator();
|
sl@0
|
48 |
TInt Exit();
|
sl@0
|
49 |
void Sync();
|
sl@0
|
50 |
};
|
sl@0
|
51 |
|
sl@0
|
52 |
|
sl@0
|
53 |
_LIT8(KTestData, "Client Write Client Write");
|
sl@0
|
54 |
_LIT8(KTestData1, "Server Write Server Write");
|
sl@0
|
55 |
_LIT8(KTestData2, "How");
|
sl@0
|
56 |
_LIT8(KTestData3, "How are U");
|
sl@0
|
57 |
_LIT8(KTestData4, "Server!!!");
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
_LIT( KSvrFileName, "mini.txt");
|
sl@0
|
61 |
_LIT( KCliFileName, "mighty.txt");
|
sl@0
|
62 |
_LIT( KServerFileName, "server.txt");
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
#endif
|
sl@0
|
66 |
|