equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2006 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: Definitions for the API |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef NEWSERVICEDEFS_H |
|
21 #define NEWSERVICEDEFS_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <apaserverapp.h> |
|
25 |
|
26 #define NEWSERVICEUID 0x101F8861 |
|
27 |
|
28 // DATA TYPES |
|
29 enum TIpcMessageIds |
|
30 { |
|
31 ECreateNewFile = RApaAppServiceBase::KServiceCmdBase, |
|
32 ENewFileToHandle, |
|
33 EGetFilenameArrayLength, |
|
34 EGetFilenameArray |
|
35 }; |
|
36 |
|
37 enum TIpcNewFileArgumentIndices |
|
38 { |
|
39 ENewServiceIndexParams = 0, |
|
40 ENewServiceIndexFsHandle, |
|
41 ENewServiceIndexFileHandle, |
|
42 ENewServiceIndexFileName |
|
43 }; |
|
44 |
|
45 /** |
|
46 * Parameter class transferred through client-server interface. |
|
47 * |
|
48 * @since Series 60 3.0 |
|
49 */ |
|
50 class TNewServiceParamPack |
|
51 { |
|
52 public: |
|
53 TNewServiceFileType iType; |
|
54 TBool iMultipleFiles; |
|
55 TBool iReturnValue; |
|
56 }; |
|
57 |
|
58 |
|
59 #endif // NEWSERVICEDEFS_H |
|
60 |
|
61 // End of File |