国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Delphi > 正文

一個C++及Delphi做的壓縮程序

2024-07-21 02:28:02
字體:
來源:轉載
供稿:網友
{ this is interface of c++ code.
  c++ source code not included to this archive.
  look readme.txt file for more information. }

#ifndef __coding_h__
#define __coding_h__

#ifndef coding_impex
#define coding_impex __declspec(dllimport)
#endif

class coding_impex avldecode
{
   public:
     ~avldecode();
      avldecode();

      virtual int readbuf            
                  ( void     *buf,   
                    unsigned  maxlen,
                    unsigned &rdlen  
                  ) = 0;             

      int  get(void *buf, unsigned  maxlen);
      int  get(void *buf, unsigned  maxlen, unsigned &rdlen)
      {  return ((int)(rdlen = get(buf, maxlen)) < 0)? rdlen :0 ;
      }

      void reset();

   private:

   ????????? private part not included ???????????????????

};


class coding_impex avlencode
{
   public:
     ~avlencode();
      avlencode();

      virtual int writebuf           
                  ( void     *buf,   
                    unsigned  len    
                  ) = 0;             


      int  put(void *buf, unsigned  n);
      void reset();

   private:
  ?????????? private part not icluded ?????????????

};

#endif //__coding_h__


///encode.pas
{$m 8192,120000,120000}
uses avlcodes;

const bufsize=60000;

var p: pointer;
    f,f1: file;
    s: string;
    buf: pointer;
    num: word;

{$f+}

function writetofile(var buf; n: integer): integer;
var num: word;
begin
blockwrite(f1,buf,n,num);
end;

{$f-}

begin
if not getmemory then
  begin
   writeln('not enough memory in heap to compress file.');
   halt;
  end;
s:=paramstr(1);
setencodeoutbuffer(@writetofile);
assign(f,s);
{$i-}
  if s<>'' then reset(f,1);
{$i+}
if (ioresult<>0) or (s='') then
  begin
   writeln;
   writeln('the author of this turbo pascal program and original c++ code is');
   writeln('alexander larkin   ( translated to turbo pascal from c++ on 27/09/1999 )');
   writeln;
   writeln('e-mail:      [email protected]');
   writeln('internet:    http://www.geocities.com/siliconvalley/6235/tpdl.htm');
   writeln;
   writeln('usage: encode.exe infile outfile [password]');
   writeln;
   freememory;
   halt;
  end;
s:=paramstr(2);
assign(f1,s);
{$i-}
if s<>'' then rewrite(f1,1);
{$i+}
if (ioresult<>0) or (s='') then
  begin
   close(f);
   writeln('cannot create find file '+s);
   freememory;
   halt;
  end;
setpassword(paramstr(3));
  getmem(buf,bufsize);
   repeat
    blockread(f,buf^,bufsize,num);
    encodeput(buf^,num);
   until num<=0;
  if num<0 then writeln('cannot compress file. you do something wrong.');
encodereset;
close(f);
close(f1);
freememory;
end.

///decode.pas
{$m 8192,120000,120000}
uses avlcodes;

const bufsize=60000;

var p: pointer;
    f,f1: file;
    s: string;
    buf: pointer;
    num: word;

{$f+}

function readfromfile(var buf; n: integer; var rdlen: integer): integer;
begin
blockread(f,buf,n,rdlen);
readfromfile:=0;
end;

{$f-}

begin
if not getmemory then
  begin
   writeln('not enough memory in heap to decompress file.');
   halt;
  end;
s:=paramstr(1);
setdecodeinbuffer(@readfromfile);
assign(f,s);
{$i-}
  if s<>'' then reset(f,1);
{$i+}
if (ioresult<>0) or (s='') then
  begin
   writeln;
   writeln('the author of this turbo pascal program and original c++ code is');
   writeln('alexander larkin   ( translated to turbo pascal from c++ on 27/09/1999 )');
   writeln;
   writeln('e-mail:      [email protected]');
   writeln('internet:    http://www.geocities.com/siliconvalley/6235/tpdl.htm');
   writeln;
   writeln('usage: decode.exe infile outfile [password]');
   writeln;
   freememory;
   halt;
  end;
s:=paramstr(2);
assign(f1,s);
{$i-}
if s<>'' then rewrite(f1,1);
{$i+}
if (ioresult<>0) or (s='') then
  begin
   close(f);
   writeln('cannot create file '+s);
   freememory;
   halt;
  end;
  getmem(buf,bufsize);
  setpassword(paramstr(3));
   repeat
    num:=decodeget(buf^,bufsize);
    if num<65535 then blockwrite(f1,buf^,num,num);
   until (num=0) or (num=65535);
if num=65535 then writeln('error! data corrupted. cannot decompress file.');
close(f);
close(f1);
freememory;
end.


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 云林县| 石屏县| 泰安市| 淮北市| 内丘县| 西城区| 迁安市| 洮南市| 梁河县| 祥云县| 张家川| 天峨县| 岗巴县| 甘谷县| 灵璧县| 宜城市| 巨鹿县| 湘西| 旬邑县| 兖州市| 莱州市| 建阳市| 阜阳市| 丰宁| 咸丰县| 上饶市| 台山市| 乌兰察布市| 邹城市| 翁源县| 云阳县| 宝鸡市| 堆龙德庆县| 沛县| 遂川县| 云梦县| 禄丰县| 尚义县| 莱州市| 九江县| 施甸县|