~ubuntu-branches/ubuntu/vivid/nordugrid-arc/vivid

« back to all changes in this revision

Viewing changes to .pc/nordugrid-arc-extern-c.patch/src/services/gridftpd/external/gacl/gacl.h

  • Committer: Package Import Robot
  • Author(s): Mattias Ellert
  • Date: 2015-02-27 19:11:14 UTC
  • Revision ID: package-import@ubuntu.com-20150227191114-98q3xnw0tp55accb
Tags: 4.2.0-3
Move #include <libxml/tree.h> out of extern C block (Closes: #778844)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef GACL_H
 
2
#define GACL_H
 
3
 
 
4
#ifdef __cplusplus
 
5
extern "C" {
 
6
#endif
 
7
 
 
8
#include <libxml/tree.h>
 
9
#include <gridsite.h>
 
10
#include <gridsite-gacl.h>
 
11
 
 
12
#ifdef __cplusplus
 
13
}
 
14
#endif
 
15
 
 
16
GRSTgaclAcl *NGACLloadAcl(char *filename);
 
17
GRSTgaclAcl *NGACLloadAclForFile(char *pathandfile);
 
18
GRSTgaclAcl *NGACLacquireAcl(const char *str);
 
19
 
 
20
#endif