quit menu complete
[lttv.git] / ltt / branches / poly / include / lttv / common.h
CommitLineData
e969fd8e 1#ifndef COMMON_H
2#define COMMON_H
3
4#include <stdio.h>
5#include <ltt/ltt.h>
6#include <gtk/gtk.h>
7
8typedef struct _mainWindow mainWindow;
9typedef struct _systemView systemView;
10typedef struct _tab tab;
11typedef struct _TimeInterval TimeInterval;
12
13/* constructor of the viewer */
14typedef GtkWidget * (*lttv_constructor)(mainWindow * main_window);
15typedef lttv_constructor view_constructor;
16
82c09edf 17struct _TimeInterval{
18 LttTime startTime;
19 LttTime endTime;
20};
e969fd8e 21
22
23#endif // COMMON_H
This page took 0.022937 seconds and 4 git commands to generate.