~ubuntu-branches/ubuntu/trusty/lcmaps-plugins-voms/trusty

« back to all changes in this revision

Viewing changes to src/voms/plugin_test.h

  • Committer: Package Import Robot
  • Author(s): Dennis van Dok
  • Date: 2012-11-06 00:50:24 UTC
  • Revision ID: package-import@ubuntu.com-20121106005024-0513ko4vca18a53l
Tags: upstream-1.5.5
ImportĀ upstreamĀ versionĀ 1.5.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * Copyright (c) Members of the EGEE Collaboration. 2004-2010. 
 
3
 * See http://www.eu-egee.org/partners/ for details on the copyright
 
4
 * holders.  
 
5
 * 
 
6
 * Licensed under the Apache License, Version 2.0 (the "License"); 
 
7
 * you may not use this file except in compliance with the License. 
 
8
 * You may obtain a copy of the License at 
 
9
 * 
 
10
 *     http://www.apache.org/licenses/LICENSE-2.0 
 
11
 * 
 
12
 * Unless required by applicable law or agreed to in writing, software 
 
13
 * distributed under the License is distributed on an "AS IS" BASIS, 
 
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
 
15
 * See the License for the specific language governing permissions and 
 
16
 * limitations under the License.
 
17
 *
 
18
 *
 
19
 *  Authors:
 
20
 *  2009-
 
21
 *     Oscar Koeroo <okoeroo@nikhef.nl>
 
22
 *     Mischa Sall\'e <msalle@nikhef.nl>
 
23
 *     David Groep <davidg@nikhef.nl>
 
24
 *     NIKHEF Amsterdam, the Netherlands
 
25
 *     <grid-mw-security@nikhef.nl> 
 
26
 *
 
27
 *  2007-2009
 
28
 *     Oscar Koeroo <okoeroo@nikhef.nl>
 
29
 *     David Groep <davidg@nikhef.nl>
 
30
 *     NIKHEF Amsterdam, the Netherlands
 
31
 *
 
32
 *  2003-2007
 
33
 *     Martijn Steenbakkers <martijn@nikhef.nl>
 
34
 *     Gerben Venekamp <venekamp@nikhef.nl>
 
35
 *     Oscar Koeroo <okoeroo@nikhef.nl>
 
36
 *     David Groep <davidg@nikhef.nl>
 
37
 *     NIKHEF Amsterdam, the Netherlands
 
38
 *
 
39
 */
 
40
 
 
41
 
 
42
extern int plugin_introspect(
 
43
        int * argc,
 
44
        lcmaps_argument_t ** argv
 
45
);
 
46
extern int plugin_initialize(
 
47
        int argc,
 
48
        char ** argv
 
49
);
 
50
extern int plugin_run(
 
51
        int argc,
 
52
        lcmaps_argument_t * argv
 
53
);
 
54
extern int plugin_terminate();