/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * filename: m-progress.h * * * * UTIL C-source: Medical Image Conversion Utility * * * * purpose : m-progress.c header file * * * * project : (X)MedCon by Erik Nolf * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* $Id: m-progress.h,v 1.5 2007/05/21 20:16:14 enlf Exp $ */ /* Copyright (C) 1997-2007 by Erik Nolf This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef __M_PROGRESS_H__ #define __M_PROGRESS_H__ #define MDC_PROGRESS_BEGIN 1 #define MDC_PROGRESS_SET 2 #define MDC_PROGRESS_INCR 3 #define MDC_PROGRESS_END 4 extern int MDC_PROGRESS; extern void (*MdcProgress)(int type, float value, char *label); #endif