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

« back to all changes in this revision

Viewing changes to src/er_pluginlist.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_pluginlist.h,v 1.9 2007/06/04 15:45:49 kbanse Exp $
 
2
 *
 
3
 *   This file is part of the ESO Common Pipeline Library
 
4
 *   Copyright (C) 2001-2004 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: kbanse $
 
23
 * $Date: 2007/06/04 15:45:49 $
 
24
 * $Revision: 1.9 $
 
25
 * $Name: esorex-3_9_0 $
 
26
 */
 
27
 
 
28
 
 
29
#ifndef ER_PLUGINLIST_H
 
30
#define ER_PLUGINLIST_H
 
31
 
 
32
 
 
33
CPL_BEGIN_DECLS
 
34
 
 
35
extern er_stringarray_t *er_pluginlist_create_list
 
36
(
 
37
  char ** listname
 
38
);
 
39
 
 
40
extern int er_pluginlist_get_libpath
 
41
(
 
42
  er_stringarray_t *list_of_pllibs,
 
43
  const char     *plugin_name,
 
44
  char  *libpath
 
45
);
 
46
 
 
47
# ifndef S_SPLINT_S
 
48
extern cpl_plugin *er_pluginlist_get_plugin
 
49
(
 
50
  const char     *library_name,
 
51
  const char     *plugin_name,
 
52
  lt_dlhandle    *module
 
53
);
 
54
#endif
 
55
 
 
56
 
 
57
extern void er_pluginlist_create_cache
 
58
(
 
59
  er_stringarray_t *nama,
 
60
  er_stringarray_t *namb
 
61
);
 
62
 
 
63
 
 
64
extern void er_pluginlist_print_list
 
65
(
 
66
  er_stringarray_t *list_of_pllibs
 
67
);
 
68
 
 
69
 
 
70
/* extern int er_pluginlist_check_duplicates                    not used ...
 
71
  (
 
72
  er_stringarray_t *list_of_pllibs,
 
73
  char           *plugin_name
 
74
  );
 
75
*/
 
76
 
 
77
 
 
78
CPL_END_DECLS
 
79
 
 
80
#endif
 
81
 
 
82
 
 
83
/* End of file */
 
84