meetingrequest/mrgui/inc/esmrgui.rh
branchRCL_3
changeset 25 3533d4323edc
equal deleted inserted replaced
24:d189ee25cf9d 25:3533d4323edc
       
     1 /*
       
     2 * Copyright (c) 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:  Resource headers for project esmrgui
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef ESMRGUI_RH
       
    20 #define ESMRGUI_RH
       
    21 
       
    22 // ---------------------------------------------------------------------------
       
    23 // ESMR_ALARM
       
    24 //
       
    25 // ---------------------------------------------------------------------------
       
    26 //
       
    27 STRUCT ESMR_ALARM
       
    28     {
       
    29     WORD    id;
       
    30     WORD    value;
       
    31     WORD    relative;
       
    32     LLINK   txt; //TBUF
       
    33     }
       
    34         
       
    35 // ---------------------------------------------------------------------------
       
    36 // ESMR_ALARM
       
    37 //
       
    38 // ---------------------------------------------------------------------------
       
    39 //
       
    40 STRUCT ESMR_RECURRENCE 
       
    41     {       
       
    42     WORD    id;
       
    43     LLINK   txt; //TBUF
       
    44     }
       
    45         
       
    46 // ---------------------------------------------------------------------------
       
    47 // ESMR_SYNC
       
    48 //
       
    49 // ---------------------------------------------------------------------------
       
    50 //
       
    51 STRUCT ESMR_SYNC
       
    52     {
       
    53     WORD    id;
       
    54     LLINK   txt; // TBUF
       
    55     }
       
    56 
       
    57 // ---------------------------------------------------------------------------
       
    58 // ESMR_UNIFIED
       
    59 //
       
    60 // ---------------------------------------------------------------------------
       
    61 //
       
    62 STRUCT ESMR_UNIFIED
       
    63     {
       
    64     WORD    id;
       
    65     LLINK   txt; // TBUF
       
    66     }
       
    67 
       
    68 // ---------------------------------------------------------------------------
       
    69 // ESMR_PRIORITY
       
    70 //
       
    71 // ---------------------------------------------------------------------------
       
    72 //
       
    73 STRUCT ESMR_PRIORITY
       
    74 	{
       
    75 	WORD	id;
       
    76 	LLINK	txt; //TBUF
       
    77 	}
       
    78     
       
    79 // ---------------------------------------------------------------------------
       
    80 // ESMR_ALARM_TABLE
       
    81 //
       
    82 // ---------------------------------------------------------------------------
       
    83 //
       
    84 STRUCT ESMR_ALARM_TABLE
       
    85     {
       
    86     STRUCT  alarms[]; // alarms (ALARM)
       
    87     }
       
    88         
       
    89 // ---------------------------------------------------------------------------
       
    90 // ESMR_RECURENCE_TABLE
       
    91 //
       
    92 // ---------------------------------------------------------------------------
       
    93 //
       
    94 STRUCT ESMR_RECURENCE_TABLE
       
    95     {
       
    96     STRUCT recurrence[]; // recurencies (RECURENCE)
       
    97     }
       
    98         
       
    99 // ---------------------------------------------------------------------------
       
   100 // ESMR_SYNC_TABLE
       
   101 //
       
   102 // ---------------------------------------------------------------------------
       
   103 //
       
   104 STRUCT ESMR_SYNC_TABLE  
       
   105     {
       
   106     STRUCT sync[]; // synchronization (SYNC)
       
   107     }
       
   108 
       
   109 // ---------------------------------------------------------------------------
       
   110 // ESMR_UNIFIED_TABLE
       
   111 //
       
   112 // ---------------------------------------------------------------------------
       
   113 //
       
   114 STRUCT ESMR_UNIFIED_TABLE  
       
   115     {
       
   116     STRUCT unified[]; // event type in unified editor (UNIFIED)
       
   117     }
       
   118 
       
   119 // ---------------------------------------------------------------------------
       
   120 // ESMR_PRIORITY_TABLE
       
   121 //
       
   122 // ---------------------------------------------------------------------------
       
   123 //
       
   124 STRUCT ESMR_PRIORITY_TABLE
       
   125 	{
       
   126 	STRUCT priority[]; // priority (PRIORITY)
       
   127 	}
       
   128 
       
   129 #endif
       
   130 
       
   131 // EOF