00001 /* 00002 * wxChecksums 00003 * Copyright (C) 2003-2004 Julien Couot 00004 * 00005 * This program is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU General Public License 00007 * as published by the Free Software Foundation; either version 2 00008 * of the License, or (at your option) any later version. 00009 * 00010 * This program is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 * GNU General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License 00016 * along with this program; if not, write to the Free Software 00017 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00018 */ 00019 00020 /** 00021 * \file comdefs.hpp 00022 * Common definitions for the application. 00023 */ 00024 00025 00026 #ifndef INC_COMDEFS_HPP 00027 #define INC_COMDEFS_HPP 00028 00029 00030 /// Application's major version number 00031 #define APP_MAJOR_VER 1 00032 00033 /// Application's minor version number 00034 #define APP_MINOR_VER 2 00035 00036 /// Application's subversion number 00037 #define APP_SUBVER 0 00038 00039 /// Application's build number 00040 #define APP_BUILD 9 00041 00042 /// Application's special (like 'alpha', 'beta', 'rc') 00043 #define APP_SPECIAL "" 00044 00045 /// Application's name 00046 #define APP_NAME "wxChecksums" 00047 00048 /// Application's author/vendor 00049 #define APP_AUTHOR "Julien Couot" 00050 00051 /// Application's development years 00052 #define APP_DEV_DATES "2003-2004" 00053 00054 /// The space between 2 controls. 00055 #define CONTROL_SPACE 10 00056 00057 /// Time between two updates of the progress dialogs in milliseconds 00058 #define UPDATE_PROGRESS_DLG 250 00059 00060 00061 /// Maximal size for the buffer of file reading. 00062 #define MAX_BUFF_SIZE 1048576 00063 00064 /// Default size for the buffer of file reading. 00065 #define DEF_BUFF_SIZE 0xFFFF 00066 00067 00068 #endif // INC_COMDEFS_HPP