mirror of
git://git.psyced.org/git/psyclpc
synced 2024-08-15 03:20:16 +00:00
22 lines
929 B
C
22 lines
929 B
C
#ifndef LPC_WIZLIST_H_
|
|
#define LPC_WIZLIST_H_ 1
|
|
|
|
/* Indices returned by wizlist_info()
|
|
*/
|
|
|
|
#define WL_NAME 0 /* Wizard name */
|
|
#define WL_COMMANDS 1 /* Number of commands executed */
|
|
#define WL_COST 2 /* Weighted evalcost spent on this wizard */
|
|
#define WL_GIGACOST 3 /* Weighted giga-evalcost spent on this wizard */
|
|
#define WL_TOTAL_COST 4 /* Total evalcost spent on this wizard */
|
|
#define WL_TOTAL_GIGACOST 5 /* Total giga-evalcost spent on this wizard */
|
|
#define WL_HEART_BEATS 6 /* Heartbeats spent on this wizard */
|
|
#define WL_CALL_OUT 7 /* unimplemented */
|
|
#define WL_ARRAY_TOTAL 8 /* Arrays accounted for */
|
|
#define WL_MAPPING_TOTAL 9 /* Mappings accounted for */
|
|
#define WL_STRUCT_TOTAL 10 /* Struct elements accounted for */
|
|
#define WL_EXTRA 11 /* Extra Wizinfo, if set */
|
|
|
|
#define WL_SIZE 12 /* Number of entries */
|
|
|
|
#endif /* LPC_WIZLIST_H_ */
|