OpenMPI  0.1.1
installdirs.h
1 /**
2  * VampirTrace
3  * http://www.tu-dresden.de/zih/vampirtrace
4  *
5  * Copyright (c) 2005-2012, ZIH, TU Dresden, Federal Republic of Germany
6  *
7  * Copyright (c) 1998-2005, Forschungszentrum Juelich, Juelich Supercomputing
8  * Centre, Federal Republic of Germany
9  *
10  * See the file COPYING in the package base directory for details
11  **/
12 
13 #ifndef _INSTALLDIRS_H
14 #define _INSTALLDIRS_H
15 
16 #ifdef __cplusplus
17 # define EXTERN extern "C"
18 #else
19 # define EXTERN extern
20 #endif
21 
22 typedef enum {
23  VT_INSTALLDIR_PREFIX,
24  VT_INSTALLDIR_EXEC_PREFIX,
25  VT_INSTALLDIR_BINDIR,
26  VT_INSTALLDIR_INCLUDEDIR,
27  VT_INSTALLDIR_LIBDIR,
28  VT_INSTALLDIR_DATADIR,
29  VT_INSTALLDIR_DATAROOTDIR,
30  VT_INSTALLDIR_DOCDIR,
31  VT_INSTALLDIR_SYSCONFDIR
32 } VTInstallDirT;
33 
34 EXTERN char* vt_installdirs_get( VTInstallDirT type );
35 
36 EXTERN char* vt_installdirs_expand( const char* input );
37 
38 #endif /* _INSTALLDIRS_H */