diff options
Diffstat (limited to 'src/odin.h')
-rw-r--r-- | src/odin.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -39,6 +39,7 @@ typedef struct _allocators Allocators; typedef struct _block_map BlockMap; typedef struct _call_graph CallGraph; typedef struct _procmap Procmap; +typedef struct _summary Summary; typedef struct _timeline Timeline; typedef struct _call_graph_frame CallGraphFrame; @@ -229,6 +230,12 @@ procmap_new (void); G_CONST_RETURN Event * app_find_prev_event_for_addr_range (App *app, guint time, gulong min, gulong max); +GtkWidget * +summary_new (void); + +void +summary_update (Summary *summary, Client *client); + void pretty_print_number (const char *number, gint len, char *output); |