uisilent.cpp 953 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. void uiStartArchiveExtract(bool Extract,const wchar *ArcName)
  7. {
  8. }
  9. bool uiStartFileExtract(const wchar *FileName,bool Extract,bool Test,bool Skip)
  10. {
  11. return true;
  12. }
  13. void uiExtractProgress(int64 CurFileSize,int64 TotalFileSize,int64 CurSize,int64 TotalSize)
  14. {
  15. }
  16. void uiProcessProgress(const char *Command,int64 CurSize,int64 TotalSize)
  17. {
  18. }
  19. void uiMsgStore::Msg()
  20. {
  21. }
  22. bool uiGetPassword(UIPASSWORD_TYPE Type,const wchar *FileName,SecPassword *Password)
  23. {
  24. return false;
  25. }
  26. bool uiIsGlobalPasswordSet()
  27. {
  28. return false;
  29. }
  30. void uiAlarm(UIALARM_TYPE Type)
  31. {
  32. }
  33. bool uiIsAborted()
  34. {
  35. return false;
  36. }
  37. void uiGiveTick()
  38. {
  39. }
  40. #ifndef SFX_MODULE
  41. const wchar *uiGetMonthName(int Month)
  42. {
  43. return L"";
  44. }
  45. #endif
  46. void uiEolAfterMsg()
  47. {
  48. }