dbgsrv/coredumpserver/ui/coredumpui/inc/coredumpuidatastructs.h
changeset 0 c6b0df440bee
equal deleted inserted replaced
-1:000000000000 0:c6b0df440bee
       
     1 // Copyright (c) 2007-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 //
       
    15 
       
    16 #ifndef __CoreDumpUI_DataStructs_H
       
    17 #define __CoreDumpUI_DataStructs_H
       
    18 
       
    19 /**
       
    20 @file
       
    21 @internalTechnology
       
    22 @released
       
    23 */
       
    24 
       
    25 #include <e32std.h> //descriptors, TUidType etc
       
    26 
       
    27 struct TListData
       
    28 /** Stores library, server, device and logical channel data */
       
    29 {
       
    30 	TFullName iName;
       
    31 };
       
    32 
       
    33 struct TUIProcessData
       
    34 /** Stores process details */
       
    35 	{
       
    36 	TBuf<8> iIdString;
       
    37 	TFileName iProcessName; // this is a TBuf (big)
       
    38 
       
    39 	TBuf<3> iObserved;
       
    40 	};
       
    41 
       
    42 struct TUIThreadData
       
    43 /** Stores thread details */
       
    44 	{
       
    45 	TBuf<8> iIdString;
       
    46 	TFileName iThreadName; // this is a TBuf (big)
       
    47 	TBuf<10> iPriorityString;
       
    48 	TBuf<8> iOwnerIdString;
       
    49 	TBuf<3>	 iObserved;
       
    50 	};
       
    51 
       
    52 struct TUIPluginData
       
    53 /** Stores plugin details */
       
    54 	{
       
    55 	TFullName iName; // this is a TBuf (big)
       
    56 	TBuf<128> iDescription;
       
    57 	TBuf<10> iUid;	 // UID of the plugin
       
    58 	TBuf<50> iType;   
       
    59 	TBuf<8> iInstances;
       
    60 	};
       
    61 	
       
    62 struct TUIExecutableData
       
    63 /** Stores the executable details */
       
    64 	{
       
    65 	TFileName iExeName;
       
    66 	TBuf<3> iObserved;
       
    67 	};
       
    68 
       
    69 struct TUIPluginInstanceData
       
    70 /** Stores plugin instance data */
       
    71 	{
       
    72 	TBuf<8> iIdString;
       
    73 	TFullName iName; // this is a TBuf (big)
       
    74 	TBuf<128> iDescription;
       
    75 	TBuf<10> iUid;	 // UID of the plugin
       
    76 	TBuf<50> iType;  
       
    77 	TBuf<10> iBoundTo;
       
    78 	};
       
    79 
       
    80 #endif