home *** CD-ROM | disk | FTP | other *** search
/ Computer Idee Hot Picture Summer / computeridee.iso / COMICIT / ComicIt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-07-09  |  1.4 KB  |  46 lines

  1. // Name: ComicIt. Converts rough scans of comics into more sharp and colour consistant pictures.
  2. // Copyright (C) 1999 S°ren Krarup Olesen
  3.  
  4. // This program is free software; you can redistribute it and/or
  5. // modify it under the terms of the GNU General Public License
  6. // as published by the Free Software Foundation; either version 2
  7. // of the License, or (at your option) any later version.
  8.  
  9. // This program is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. // GNU General Public License for more details.
  13.  
  14. // You should have received a copy of the GNU General Public License
  15. // along with this program; if not, write to the Free Software
  16. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  
  18. // Please contact me at e-mail sko@kom.auc.dk for questions or comments.
  19.  
  20. #define IDC_INPUT_FILE 101
  21.  
  22. #define IDC_BLACK_SIZE 201
  23. #define IDC_EDGE_SIZE 202
  24.  
  25. #define IDC_STAND_ALONE 301
  26.  
  27. #define IDC_DEPTH_1 401
  28. #define IDC_DEPTH_2 402
  29. #define IDC_DEPTH_3 403
  30.  
  31. #define IDC_DARK_SIZE 501
  32. #define IDC_LIGHT_SIZE 502
  33.  
  34. #define IDC_OUTPUT_FILE 601
  35.  
  36. #define IDC_STATUS 701
  37.  
  38. #define IDC_CONVERT 801
  39. #define IDC_EXIT 802
  40.  
  41. #define LINE_LEN 79
  42. #define DBL_LINE_LEN 159
  43.  
  44. typedef char Line[LINE_LEN+1];
  45. typedef char DblLine[DBL_LINE_LEN+1];
  46.