equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-2009 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef __AE_COMPONENT_RPC_H__ |
|
21 #define __AE_COMPONENT_RPC_H__ |
|
22 |
|
23 /********************************************************************* |
|
24 * |
|
25 * Definitions |
|
26 * |
|
27 ********************************************************************/ |
|
28 #define TYPE_SVC_STUB_IMPL 0 |
|
29 #define TYPE_SVC_MGR_H 1 |
|
30 #define TYPE_SVC_MGR_C 2 |
|
31 #define TYPE_INST_H 3 |
|
32 #define TYPE_INST_C 4 |
|
33 #define TYPE_CLIENT_H 5 |
|
34 #define TYPE_CLIENT_C 6 |
|
35 |
|
36 #define MAXEXTENDEDNAME 256 |
|
37 |
|
38 /********************************************************************* |
|
39 * |
|
40 * Prototypes |
|
41 * |
|
42 ********************************************************************/ |
|
43 void ae_output_rpc_file( char *infile, char *outfile, int type ); |
|
44 void ae_set_trace( int type ); |
|
45 char *ae_extend_custom_types( char *base_type ); |
|
46 |
|
47 #endif //__AE_COMPONENT_RPC_H__ |