10 lines
156 B
C
10 lines
156 B
C
|
|
#ifndef EVENT_H_
|
||
|
|
#define EVENT_H_
|
||
|
|
|
||
|
|
struct packet;
|
||
|
|
struct debug_context;
|
||
|
|
|
||
|
|
extern void event_handle(struct debug_context *ctx, struct packet *event);
|
||
|
|
|
||
|
|
#endif
|