This commit is contained in:
King_DuckZ 2020-05-05 20:22:47 +02:00
parent ef9d9aaeeb
commit 4ce4e79316
2 changed files with 8 additions and 3 deletions

View file

@ -63,11 +63,13 @@
2005/07/02 - unalz , .. 2005/07/02 - unalz , ..
- - from unalz_wcx_01i.zip - - from unalz_wcx_01i.zip
2005/07/09 - unalz 0.5 2005/07/09 - unalz 0.5
2005/07/25 - -d "/" (Pavel Roskin) 2005/07/24 - -d "/" (Pavel Roskin)
- pipemode - (Pavel Roskin) - pipemode - (Pavel Roskin)
- / (Pavel Roskin) - / (Pavel Roskin)
- -pwd - -pwd
- unalz 0.51 - unalz 0.51
2005/07/27 - main() setlocale()
- unalz 0.52
: :
- alz (deflate/ bzip2/raw) - alz (deflate/ bzip2/raw)
@ -174,7 +176,7 @@ namespace UNALZ
# pragma pack(1) # pragma pack(1)
#endif #endif
static const char UNALZ_VERSION[] = "CUnAlz0.51"; static const char UNALZ_VERSION[] = "CUnAlz0.52";
static const char UNALZ_COPYRIGHT[] = "Copyright(C) 2004-2005 by hardkoder ( http://www.kipple.pe.kr ) "; static const char UNALZ_COPYRIGHT[] = "Copyright(C) 2004-2005 by hardkoder ( http://www.kipple.pe.kr ) ";
enum {ENCR_HEADER_LEN=12}; // xf86 enum {ENCR_HEADER_LEN=12}; // xf86

View file

@ -23,7 +23,8 @@ void Copyright()
// printf("unalz v0.31 (2004/11/27) \n"); // printf("unalz v0.31 (2004/11/27) \n");
// printf("unalz v0.4 (2005/06/18) \n"); // printf("unalz v0.4 (2005/06/18) \n");
// printf("unalz v0.5 (2005/07/09) \n"); // printf("unalz v0.5 (2005/07/09) \n");
printf("unalz v0.51 (2005/07/24) \n"); // printf("unalz v0.51 (2005/07/24) \n");
printf("unalz v0.52 (2005/07/27) \n");
printf("Copyright(C) 2004-2005 by hardkoder (http://www.kipple.pe.kr) \n"); printf("Copyright(C) 2004-2005 by hardkoder (http://www.kipple.pe.kr) \n");
} }
@ -124,6 +125,8 @@ void UnAlzCallback(const char* szMessage, INT64 nCurrent, INT64 nRange, void* pa
int main(int argc, char* argv[]) int main(int argc, char* argv[])
{ {
setlocale(LC_ALL, "");
if(argc<2) if(argc<2)
{ {
Usage(); Usage();