git-svn-id: http://ltt.polymtl.ca/svn@496 04897980-b3bd-0310-b5e0-8ef037075253
[lttv.git] / ltt / branches / poly / lttv / modules / examples / 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 <lttv/module.h>
7
8 static void init() {
9 g_critical("Sample module 2 init()");
10 }
11
12 static void destroy() {
13 g_critical("Sample module 2 destroy()");
14 }
15
16
17 LTTV_MODULE("samplemodule2", "Medium...", "Long...", init, destroy, {})
18
This page took 0.028811 seconds and 4 git commands to generate.