blob: 48bd9c5825a461605ae6b3074b2f5852063f4c36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifndef H_LEGACY
#define H_LEGACY
/**
* \file lib/legacy.h
*
*/
/**
*/
extern int _noDirTokens;
#ifdef __cplusplus
extern "C" {
#endif
/**
* Convert absolute path tag to (dirname,basename,dirindex) tags.
* @param h header
*/
void compressFilelist(Header h);
/**
* Convert (dirname,basename,dirindex) tags to absolute path tag.
* @param h header
*/
void expandFilelist(Header h);
/**
* Do all necessary retrofits for a package header.
* @param h header
*/
void legacyRetrofit(Header h);
#ifdef __cplusplus
}
#endif
#endif /* H_LEGACY */
|