premilinary add of modular user interface implementation with a few test modules.
[lttv.git] / ltt / branches / poly / lttv / test / samplemodule2.c
1 /* Sample module for Linux Trace Toolkit new generation User Interface */
2
3 /* Created by Mathieu Desnoyers, may 2003 */
4
5 #include <glib.h>
6 #include <gmodule.h>
7
8 #include "../../include/lttv/attribute.h"
9
10 extern lttv_attributes *attributes_global;
11
12 G_MODULE_EXPORT void init() {
13 g_critical("Sample module 2 init()");
14 }
15
16 G_MODULE_EXPORT void destroy() {
17 g_critical("Sample module 2 destroy()");
18 }
19
This page took 0.029093 seconds and 4 git commands to generate.