update compat
[lttv.git] / tags / lttv-0.11.3-23102008 / lttv / modules / examples / samplemodule2.c
CommitLineData
13ab9fcb 1/* Sample module for Linux Trace Toolkit new generation User Interface */
2
3/* Created by Mathieu Desnoyers, may 2003 */
4
5#ifdef HAVE_CONFIG_H
6#include <config.h>
7#endif
8
9#include <glib.h>
10#include <lttv/module.h>
11
12static void init() {
13 g_critical("Sample module 2 init()");
14}
15
16static void destroy() {
17 g_critical("Sample module 2 destroy()");
18}
19
20
21LTTV_MODULE("samplemodule2", "Medium...", "Long...", init, destroy, {})
22
This page took 0.022749 seconds and 4 git commands to generate.