Home | History | Annotate | Download | only in test

Lines Matching refs:kill

24 struct kill;
42 int (*attack_assign)(struct msg *, const struct kill*);
43 int (*attack_get)(struct msg *, struct kill* *);
54 struct kill* attack_data;
79 int msg_attack_assign(struct msg *, const struct kill*);
80 int msg_attack_get(struct msg *, struct kill* *);
86 /* Tag definition for kill */
94 /* Structure declaration for kill */
96 int (*weapon_assign)(struct kill *, const char *);
97 int (*weapon_get)(struct kill *, char * *);
98 int (*action_assign)(struct kill *, const char *);
99 int (*action_get)(struct kill *, char * *);
100 int (*how_often_assign)(struct kill *, const ev_uint32_t);
101 int (*how_often_get)(struct kill *, ev_uint32_t *);
104 struct kill {
116 struct kill *kill_new(void);
117 void kill_free(struct kill *);
118 void kill_clear(struct kill *);
119 void kill_marshal(struct evbuffer *, const struct kill *);
120 int kill_unmarshal(struct kill *, struct evbuffer *);
121 int kill_complete(struct kill *);
123 const struct kill *);
125 struct kill *);
126 int kill_weapon_assign(struct kill *, const char *);
127 int kill_weapon_get(struct kill *, char * *);
128 int kill_action_assign(struct kill *, const char *);
129 int kill_action_get(struct kill *, char * *);
130 int kill_how_often_assign(struct kill *, const ev_uint32_t);
131 int kill_how_often_get(struct kill *, ev_uint32_t *);
132 /* --- kill done --- */