blob: b2726f8abae2a6d6013d8375d84c684e03bcb3e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _RAR_LOG_
#define _RAR_LOG_
void InitLogOptions(char *LogName);
void Log(const char *ArcName,const char *Format,...);
void mprintf(const char *fmt,...);
void eprintf(const char *fmt,...);
int Ask(const char *AskStr);
void GetPasswordText(char *Str,int MaxLength);
#endif
|