summaryrefslogtreecommitdiff
path: root/source/CEH/CmdResult.cpp
blob: 2cc9b23452400fd31c76ad15e63ee93a4fc75d1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*******************************************************************************
 * Copyright (C) ST-Ericsson SA 2011
 * License terms: 3-clause BSD license
 ******************************************************************************/

#include "CmdResult.h"
#include "Serialization.h"

CmdResult::CmdResult()
{
    System_LoaderStartupStatus_Status = 0;

    FileSystem_Properties_Mode = 0;
    FileSystem_Properties_Size = 0;
    FileSystem_Properties_MTime = 0;
    FileSystem_Properties_ATime = 0;
    FileSystem_Properties_CTime = 0;
    FileSystem_VolumeProperties_Size = 0;
    FileSystem_VolumeProperties_Free = 0;

    GeneralResponse_Session = 0;

    Security_GetDomain_WrittenDomain = 0;

    A2_MaxLoaderPacketSize = 0;
}

CmdResult::~CmdResult()
{
}