author | markw <markw@symbian.org> |
Wed, 20 Oct 2010 10:26:40 +0100 | |
changeset 70 | 6b078b83b04a |
parent 37 | b8aae0a088d8 |
permissions | -rw-r--r-- |
37
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
1 |
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
2 |
// All rights reserved. |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
3 |
// This component and the accompanying materials are made available |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
4 |
// under the terms of "Eclipse Public License v1.0" |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
5 |
// which accompanies this distribution, and is available |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html". |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
7 |
// |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
8 |
// Initial Contributors: |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
9 |
// Nokia Corporation - initial contribution. |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
10 |
// |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
11 |
// Contributors: |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
12 |
// |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
13 |
// Description: |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
14 |
// |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
15 |
|
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
16 |
TARGET startupprofiling.exe |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
17 |
TARGETTYPE exe |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
18 |
CAPABILITY ReadUserData WriteUserData |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
19 |
SOURCE startupprofiling.cpp |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
20 |
|
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
21 |
OS_LAYER_SYSTEMINCLUDE_SYMBIAN |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
22 |
SYSTEMINCLUDE /epoc32/include/platform |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
23 |
|
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
24 |
|
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
25 |
LIBRARY euser.lib |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
26 |
//ecom.lib efile.lib efsrv.lib bafl.lib |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
27 |
|
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
28 |
VENDORID 0x70000001 |
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
29 |
|
b8aae0a088d8
Adding "Profiling Starter" app so we can see what's going on during boot
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
30 |
SMPSAFE |