~ubuntu-branches/ubuntu/vivid/unrar-nonfree/vivid

« back to all changes in this revision

Viewing changes to uisilent.cpp

  • Committer: Package Import Robot
  • Author(s): Martin Meredith
  • Date: 2015-02-03 12:58:01 UTC
  • mfrom: (1.1.18) (5.1.18 sid)
  • Revision ID: package-import@ubuntu.com-20150203125801-od6ev8cqy1er51vz
Tags: 1:5.2.5-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
{
 
4
  return UIASKREP_R_REPLACE;
 
5
}
 
6
 
 
7
 
 
8
 
 
9
 
 
10
void uiStartArchiveExtract(bool Extract,const wchar *ArcName)
 
11
{
 
12
}
 
13
 
 
14
 
 
15
bool uiStartFileExtract(const wchar *FileName,bool Extract,bool Test,bool Skip)
 
16
{
 
17
  return true;
 
18
}
 
19
 
 
20
 
 
21
void uiExtractProgress(int64 CurFileSize,int64 TotalFileSize,int64 CurSize,int64 TotalSize)
 
22
{
 
23
}
 
24
 
 
25
 
 
26
void uiProcessProgress(const char *Command,int64 CurSize,int64 TotalSize)
 
27
{
 
28
}
 
29
 
 
30
 
 
31
void uiMsgStore::Msg()
 
32
{
 
33
}
 
34
 
 
35
 
 
36
bool uiGetPassword(UIPASSWORD_TYPE Type,const wchar *FileName,SecPassword *Password)
 
37
{
 
38
  return false;
 
39
}
 
40
 
 
41
 
 
42
void uiAlarm(UIALARM_TYPE Type)
 
43
{
 
44
}
 
45
 
 
46
 
 
47
bool uiIsAborted()
 
48
{
 
49
  return false;
 
50
}
 
51
 
 
52
 
 
53
void uiGiveTick()
 
54
{
 
55
}
 
56
 
 
57
 
 
58
#ifndef SFX_MODULE
 
59
const wchar *uiGetMonthName(int Month)
 
60
{
 
61
  return L"";
 
62
}
 
63
#endif