Coverage Report

Created: 2023-06-07 06:02

/src/unrar/uisilent.cpp
Line
Count
Source (jump to first uncovered line)
1
// Purely user interface function. Gets and returns user input.
2
UIASKREP_RESULT uiAskReplace(wchar *Name,size_t MaxNameSize,int64 FileSize,RarTime *FileTime,uint Flags)
3
0
{
4
0
  return UIASKREP_R_REPLACE;
5
0
}
6
7
8
9
10
void uiStartArchiveExtract(bool Extract,const wchar *ArcName)
11
1
{
12
1
}
13
14
15
bool uiStartFileExtract(const wchar *FileName,bool Extract,bool Test,bool Skip)
16
1
{
17
1
  return true;
18
1
}
19
20
21
void uiExtractProgress(int64 CurFileSize,int64 TotalFileSize,int64 CurSize,int64 TotalSize)
22
0
{
23
0
}
24
25
26
void uiProcessProgress(const char *Command,int64 CurSize,int64 TotalSize)
27
0
{
28
0
}
29
30
31
void uiMsgStore::Msg()
32
7
{
33
7
}
34
35
36
bool uiGetPassword(UIPASSWORD_TYPE Type,const wchar *FileName,SecPassword *Password)
37
2
{
38
2
  return false;
39
2
}
40
41
42
bool uiIsGlobalPasswordSet()
43
1
{
44
1
  return false;
45
1
}
46
47
48
void uiAlarm(UIALARM_TYPE Type)
49
0
{
50
0
}
51
52
53
bool uiIsAborted()
54
0
{
55
0
  return false;
56
0
}
57
58
59
void uiGiveTick()
60
0
{
61
0
}
62
63
64
#ifndef SFX_MODULE
65
const wchar *uiGetMonthName(int Month)
66
0
{
67
0
  return L"";
68
0
}
69
#endif
70
71
72
void uiEolAfterMsg()
73
0
{
74
0
}