progress_bar.h
上传用户:knt0001
上传日期:2022-01-28
资源大小:264k
文件大小:1k
源码类别:

Email客户端

开发平台:

C/C++

  1. /**
  2.     eMail is a command line SMTP client.
  3.     Copyright (C) 2001 - 2008 email by Dean Jones
  4.     Software supplied and written by http://www.cleancode.org
  5.     This file is part of eMail.
  6.     eMail is free software; you can redistribute it and/or modify
  7.     it under the terms of the GNU General Public License as published by
  8.     the Free Software Foundation; either version 2 of the License, or
  9.     (at your option) any later version.
  10.     eMail is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.     You should have received a copy of the GNU General Public License
  15.     along with eMail; if not, write to the Free Software
  16.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17. **/
  18. #ifndef PROGRESS_H
  19. #define PROGRESS_H  1
  20. struct prbar {
  21. short error;
  22. short bar_size;
  23. short percent;
  24. int progress;
  25. int truncated_file_size;
  26. int actual_file_size;
  27. int curr_size;
  28. char *subject;
  29. char *size_type;
  30. char *buf;
  31. };
  32. struct prbar *prbarInit(size_t bytes);
  33. void prbarPrint(size_t bytes, struct prbar *bar);
  34. void prbarDestroy(struct prbar *bar);
  35. #endif /* PROGRESS_H */