meetingrequest/mrgui/inc/esmrgui.rh
changeset 0 8466d47a6819
child 16 4ce476e64c59
equal deleted inserted replaced
-1:000000000000 0:8466d47a6819
       
     1 /*
       
     2 * Copyright (c)  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_PRIORITY
       
    59 //
       
    60 // ---------------------------------------------------------------------------
       
    61 //
       
    62 STRUCT ESMR_PRIORITY
       
    63 	{
       
    64 	WORD	id;
       
    65 	LLINK	txt; //TBUF
       
    66 	}
       
    67     
       
    68 // ---------------------------------------------------------------------------
       
    69 // ESMR_ALARM_TABLE
       
    70 //
       
    71 // ---------------------------------------------------------------------------
       
    72 //
       
    73 STRUCT ESMR_ALARM_TABLE
       
    74     {
       
    75     STRUCT  alarms[]; // alarms (ALARM)
       
    76     }
       
    77         
       
    78 // ---------------------------------------------------------------------------
       
    79 // ESMR_RECURENCE_TABLE
       
    80 //
       
    81 // ---------------------------------------------------------------------------
       
    82 //
       
    83 STRUCT ESMR_RECURENCE_TABLE
       
    84     {
       
    85     STRUCT recurrence[]; // recurencies (RECURENCE)
       
    86     }
       
    87         
       
    88 // ---------------------------------------------------------------------------
       
    89 // ESMR_SYNC_TABLE
       
    90 //
       
    91 // ---------------------------------------------------------------------------
       
    92 //
       
    93 STRUCT ESMR_SYNC_TABLE  
       
    94     {
       
    95     STRUCT sync[]; // synchronization (SYNC)
       
    96     }
       
    97 
       
    98 // ---------------------------------------------------------------------------
       
    99 // ESMR_PRIORITY_TABLE
       
   100 //
       
   101 // ---------------------------------------------------------------------------
       
   102 //
       
   103 STRUCT ESMR_PRIORITY_TABLE
       
   104 	{
       
   105 	STRUCT priority[]; // priority (PRIORITY)
       
   106 	}
       
   107 
       
   108 #endif
       
   109 
       
   110 // EOF