MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | #ifndef LPC_WIZLIST_H_ |
| 2 | #define LPC_WIZLIST_H_ 1 |
| 3 | |
| 4 | /* Indices returned by wizlist_info() |
| 5 | */ |
| 6 | |
| 7 | #define WL_NAME 0 /* Wizard name */ |
| 8 | #define WL_COMMANDS 1 /* Number of commands executed */ |
| 9 | #define WL_COST 2 /* Weighted evalcost spent on this wizard */ |
| 10 | #define WL_GIGACOST 3 /* Weighted giga-evalcost spent on this wizard */ |
| 11 | #define WL_TOTAL_COST 4 /* Total evalcost spent on this wizard */ |
| 12 | #define WL_TOTAL_GIGACOST 5 /* Total giga-evalcost spent on this wizard */ |
| 13 | #define WL_HEART_BEATS 6 /* Heartbeats spent on this wizard */ |
| 14 | #define WL_CALL_OUT 7 /* unimplemented */ |
| 15 | #define WL_ARRAY_TOTAL 8 /* Arrays accounted for */ |
| 16 | #define WL_MAPPING_TOTAL 9 /* Mappings accounted for */ |
| 17 | #define WL_STRUCT_TOTAL 10 /* Struct elements accounted for */ |
| 18 | #define WL_EXTRA 11 /* Extra Wizinfo, if set */ |
| 19 | |
| 20 | #define WL_SIZE 12 /* Number of entries */ |
| 21 | |
| 22 | #endif /* LPC_WIZLIST_H_ */ |