equal
deleted
inserted
replaced
|
1 // Copyright (c) 2006-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 // Global entry point for the LBS Network Request Handler |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 @internalTechnology |
|
21 @released |
|
22 */ |
|
23 #include <e32base.h> |
|
24 #include <e32test.h> |
|
25 // jcm #include "lbsnetworkrequesthandler.h" |
|
26 #include "lbsdevloggermacros.h" |
|
27 #include "csecureasbase.h" |
|
28 #include "tserverstartparams.h" |
|
29 |
|
30 TInt E32Main() |
|
31 { |
|
32 LBSLOG_BEGIN(); |
|
33 TServerStartParams params; |
|
34 TPtr ptr(reinterpret_cast<TText*>(¶ms), 0, sizeof(TServerStartParams)/sizeof(TText16)); |
|
35 User::CommandLine(ptr); |
|
36 TInt err = CSecureASBase::ServerMain(params); |
|
37 return err; |
|
38 } |