mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 09:14:58 -06:00
18 lines
207 B
C++
Executable File
18 lines
207 B
C++
Executable File
#include "rar.hpp"
|
|
|
|
int ToPercent(Int64 N1,Int64 N2)
|
|
{
|
|
if (N2==0)
|
|
return(0);
|
|
if (N2<N1)
|
|
return(100);
|
|
return(int64to32(N1*100/N2));
|
|
}
|
|
|
|
|
|
void RARInitData()
|
|
{
|
|
InitCRC();
|
|
ErrHandler.Clean();
|
|
}
|