epoc32/include/pathconfiguration.hrh
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
williamr@2
     1
/*
williamr@2
     2
* Copyright (c) 2002-2006 Nokia Corporation and/or its subsidiary(-ies). 
williamr@2
     3
* All rights reserved.
williamr@2
     4
* This component and the accompanying materials are made available
williamr@4
     5
* under the terms of "Eclipse Public License v1.0"
williamr@2
     6
* which accompanies this distribution, and is available
williamr@4
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
williamr@2
     8
*
williamr@2
     9
* Initial Contributors:
williamr@2
    10
* Nokia Corporation - initial contribution.
williamr@2
    11
*
williamr@2
    12
* Contributors:
williamr@2
    13
*
williamr@2
    14
* Description:  System paths are defined here.
williamr@2
    15
*                This file should be edited to change system paths.
williamr@2
    16
*                These definitions can be used directly in resource files.
williamr@2
    17
*
williamr@2
    18
*/
williamr@2
    19
williamr@2
    20
williamr@2
    21
#ifndef PATH_CONFIGURATION_HRH
williamr@2
    22
#define PATH_CONFIGURATION_HRH
williamr@2
    23
williamr@2
    24
/**
williamr@2
    25
* The root directory in ROM.
williamr@2
    26
*/
williamr@2
    27
#define text_rom_root_path                  "Z:\\Data\\"
williamr@2
    28
williamr@2
    29
/**
williamr@2
    30
* The root directory in Phone Memory.
williamr@2
    31
*/
williamr@2
    32
#define text_phone_memory_root_path         "C:\\Data\\"
williamr@2
    33
williamr@2
    34
/**
williamr@2
    35
* The root directory in Memory Card.
williamr@2
    36
*/
williamr@2
    37
#define text_memory_card_root_path          "E:\\"
williamr@2
    38
williamr@2
    39
/**
williamr@2
    40
* Games directory.
williamr@2
    41
* The directory is always under a root directory.
williamr@2
    42
*/
williamr@2
    43
#define text_games_path                     "Games\\"
williamr@2
    44
williamr@2
    45
/**
williamr@2
    46
* Installs directory.
williamr@2
    47
* The directory is always under a root directory.
williamr@2
    48
*/
williamr@2
    49
#define text_installs_path                  "Installs\\"
williamr@2
    50
williamr@2
    51
/**
williamr@2
    52
* Others directory.
williamr@2
    53
* The directory is always under a root directory.
williamr@2
    54
*/
williamr@2
    55
#define text_others_path                    "Others\\"
williamr@2
    56
williamr@2
    57
/**
williamr@2
    58
* Videos directory.
williamr@2
    59
* The directory is always under a root directory.
williamr@2
    60
*/
williamr@2
    61
#define text_videos_path                    "Videos\\"
williamr@2
    62
williamr@2
    63
/**
williamr@2
    64
* Images directory.
williamr@2
    65
* The directory is always under a root directory.
williamr@2
    66
*/
williamr@2
    67
#define text_images_path                    "Images\\"
williamr@2
    68
williamr@2
    69
/**
williamr@2
    70
* Pictures directory.
williamr@2
    71
* The directory is always under a root directory.
williamr@2
    72
* @deprecated Use GSM pictures directory (text_gms_pictures_path) instead.
williamr@2
    73
*/
williamr@2
    74
#define text_pictures_path                  "Images\\Pictures\\"
williamr@2
    75
williamr@2
    76
/**
williamr@2
    77
* GMS pictures directory.
williamr@2
    78
* The directory is always under a root directory.
williamr@2
    79
*/
williamr@2
    80
#define text_gms_pictures_path              "Images\\Pictures\\"
williamr@2
    81
williamr@2
    82
/**
williamr@2
    83
* MMS background images directory.
williamr@2
    84
* The directory is always under a root directory.
williamr@2
    85
*/
williamr@2
    86
#define text_mms_background_images_path     "Images\\Backgrounds\\"
williamr@2
    87
williamr@2
    88
/**
williamr@2
    89
* Presence logos directory.
williamr@2
    90
* The directory is always under a root directory.
williamr@2
    91
*/
williamr@2
    92
#define text_presence_logos_path            "Images\\Presence\\"
williamr@2
    93
williamr@2
    94
/**
williamr@2
    95
* Sounds directory.
williamr@2
    96
* The directory is always under a root directory.
williamr@2
    97
*/
williamr@2
    98
#define text_sounds_path                    "Sounds\\"
williamr@2
    99
williamr@2
   100
/**
williamr@2
   101
* Digital sounds directory.
williamr@2
   102
* The directory is always under a root directory.
williamr@2
   103
*/
williamr@2
   104
#define text_digital_sounds_path            "Sounds\\Digital\\"
williamr@2
   105
williamr@2
   106
/**
williamr@2
   107
* Simple sounds directory.
williamr@2
   108
* The directory is always under a root directory.
williamr@2
   109
*/
williamr@2
   110
#define text_simple_sounds_path             "Sounds\\Simple\\"
williamr@2
   111
williamr@2
   112
/**
williamr@2
   113
* Thumbnail images directory. 
williamr@2
   114
* The directory is not necessarily under a root directory. The directory
williamr@2
   115
* exists under the same directory where the corresponding image is.
williamr@2
   116
* Do not try to append this to a root directory.
williamr@2
   117
*/
williamr@2
   118
#define text_images_thumbnail_path          "_PAlbTN\\"
williamr@2
   119
williamr@2
   120
/**
williamr@2
   121
* Full path of the contacts directory in a memory card. 
williamr@2
   122
* Contains also the drive letter.
williamr@2
   123
* Do not try to append this to any root directory.
williamr@2
   124
*/
williamr@2
   125
#define text_memory_card_contacts_path      "E:\\Others\\Contacts\\"
williamr@2
   126
williamr@2
   127
/**
williamr@2
   128
* Full path of the links directory in a memory card. 
williamr@2
   129
* Contains also the drive letter.
williamr@2
   130
* Do not try to append this to any root directory.
williamr@2
   131
*/
williamr@2
   132
#define text_memory_card_links_path         "E:\\Others\\Links\\"
williamr@2
   133
williamr@2
   134
#endif // PATH_CONFIGURATION_HRH
williamr@2
   135
williamr@2
   136
// End of File