~ubuntu-branches/ubuntu/gutsy/xmedcon/gutsy

« back to all changes in this revision

Viewing changes to source/m-xtract.h

  • Committer: Bazaar Package Importer
  • Author(s): Roland Marcus Rutschmann
  • Date: 2004-06-07 09:00:14 UTC
  • Revision ID: james.westby@ubuntu.com-20040607090014-t39n52qc9zjqqqkh
Tags: upstream-0.9.6
ImportĀ upstreamĀ versionĀ 0.9.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 
2
 * filename: m-xtract.h                                                    *
 
3
 *                                                                         *
 
4
 * UTIL C-source: Medical Image Conversion Utility                         *
 
5
 *                                                                         *
 
6
 * purpose      : m-xtract.c header file                                   *
 
7
 *                                                                         *
 
8
 * project      : (X)MedCon by Erik Nolf                                   *
 
9
 *                                                                         *
 
10
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
 
11
/* $Id: m-xtract.h,v 1.7 2004/01/04 22:36:17 enlf Exp $
 
12
 */
 
13
 
 
14
/*
 
15
   Copyright (C) 1997-2004 by Erik Nolf
 
16
 
 
17
   This program is free software; you can redistribute it and/or modify it
 
18
   under the terms of the GNU General Public License as published by the
 
19
   Free Software Foundation; either version 2, or (at your option) any later
 
20
   version.
 
21
 
 
22
   This program is distributed in the hope that it will be useful, but
 
23
   WITHOUT ANY WARRANTY; without even the implied warranty of
 
24
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
 
25
   Public License for more details.
 
26
 
 
27
   You should have received a copy of the GNU General Public License along
 
28
   with this program; if not, write to the Free Software Foundation, Inc.,
 
29
   59 Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
30
 
 
31
#ifndef __M_XTRACT_H__
 
32
#define __M_XTRACT_H__
 
33
 
 
34
/****************************************************************************
 
35
                              D E F I N E S 
 
36
****************************************************************************/
 
37
 
 
38
typedef struct MdcExtractInputStruct_t {
 
39
    char list[MDC_MAX_LIST+1];
 
40
    int INTERACTIVE;
 
41
    Int32  style;
 
42
    Uint32 *inrs;
 
43
    Uint32 num_p, num_f, num_g, num_b;
 
44
}MdcExtractInputStruct;
 
45
 
 
46
 
 
47
extern MdcExtractInputStruct mdcextractinput;
 
48
 
 
49
/****************************************************************************
 
50
                            F U N C T I O N S
 
51
****************************************************************************/
 
52
int MdcGetImagesToExtract(FILEINFO *fi, MdcExtractInputStruct *input);
 
53
char *MdcExtractImages(FILEINFO *fi);
 
54
 
 
55
#endif
 
56