MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | |
| 2 | ***************************************************************** |
| 3 | * ACHTUNG: WIRD VOM DRIVER NICHT MEHR GERUFEN! NICHT VERWENDEN! * |
| 4 | ***************************************************************** |
| 5 | |
| 6 | SYNOPSIS |
| 7 | string *define_include_dirs(void) |
| 8 | |
| 9 | DESCRIPTION |
| 10 | Return an array of string patterns giving the absolut paths |
| 11 | where to search an include file. The patterns have to have a |
| 12 | %s at the place where the name given in the #include statement |
| 13 | has to be inserted. |
| 14 | |
| 15 | EXAMPLE |
| 16 | define_include_dirs() { return ({ "sys/%s", "lib/%s" }); } |
| 17 | |
| 18 | HISTORY |
| 19 | Dropped in 3.2.1, replaced by H_INCLUDE_DIRS hook. |
| 20 | |
| 21 | SEE ALSO |
| 22 | master(M) |
| 23 | |
| 24 | 29.10.2006 Zesstra |