~ubuntu-branches/ubuntu/vivid/esorex/vivid-proposed

« back to all changes in this revision

Viewing changes to src/er_plugin.h

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2011-11-25 12:08:00 UTC
  • Revision ID: package-import@ubuntu.com-20111125120800-hb8qatpoxkhv0fne
Tags: upstream-3.9.0
ImportĀ upstreamĀ versionĀ 3.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: er_plugin.h,v 1.14 2009/12/11 16:35:22 cgarcia Exp $
 
2
 *
 
3
 *   This file is part of the ESO Common Pipeline Library
 
4
 *   Copyright (C) 2001-2008 European Southern Observatory
 
5
 *
 
6
 *   This program 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
 *
 
11
 *   This program is distributed in the hope that it will be useful,
 
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *   GNU General Public License for more details.
 
15
 *
 
16
 *   You should have received a copy of the GNU General Public License
 
17
 *   along with this program; if not, write to the Free Software
 
18
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
 */
 
20
 
 
21
/*
 
22
 * $Author: cgarcia $
 
23
 * $Date: 2009/12/11 16:35:22 $
 
24
 * $Revision: 1.14 $
 
25
 * $Name: esorex-3_9_0 $
 
26
 */
 
27
 
 
28
 
 
29
#ifndef ER_PLUGIN_H
 
30
#define ER_PLUGIN_H
 
31
 
 
32
# include <cxstrutils.h>
 
33
 
 
34
#include <cpl.h>
 
35
 
 
36
#include <er_stringarray.h>
 
37
 
 
38
#endif  /* ER_PLUGIN_H */
 
39
 
 
40
 
 
41
CPL_BEGIN_DECLS
 
42
 
 
43
extern int plugin_process_plugin
 
44
(
 
45
  cpl_parameterlist *,
 
46
  char *,
 
47
  er_stringarray_t *,
 
48
  int, 
 
49
  char **
 
50
);
 
51
 
 
52
extern cpl_msg_severity message_severity
 
53
(
 
54
  cpl_parameterlist *param_list,
 
55
  int  flag
 
56
);
 
57
 
 
58
extern void er_enlarge
 
59
(
 
60
  const char *fn, 
 
61
  char **pptr, 
 
62
  int msize
 
63
)
 
64
;
 
65
 
 
66
extern int  mysscanf 
 
67
(
 
68
  char *myline,
 
69
  char *path,
 
70
  char * tag,
 
71
  char * group
 
72
)
 
73
;
 
74
 
 
75
extern cpl_frameset *er_frameset_load 
 
76
(
 
77
  const char *name,
 
78
  cpl_frameset * set,
 
79
  int check_input_files_flag
 
80
)
 
81
;
 
82
 
 
83
extern int upda_products 
 
84
(
 
85
  cpl_frameset * frameset
 
86
)
 
87
;
 
88
 
 
89
extern int move_products 
 
90
(
 
91
  cpl_frameset * frameset,
 
92
  char * output_directory,
 
93
  char * output_prefix,
 
94
  char * link_directory,
 
95
  int flag_noprefix, 
 
96
  int flag_nolink, 
 
97
  int flag_readonly
 
98
)
 
99
;
 
100
 
 
101
 
 
102
CPL_END_DECLS
 
103
 
 
104
 
 
105
 
 
106
/* End of file */
 
107