git-svn-id: http://ltt.polymtl.ca/svn@311 04897980-b3bd-0310-b5e0-8ef037075253
[lttv.git] / ltt / branches / poly / lttv / modules / examples / samplemodule.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 G_MODULE_EXPORT void init() {
9 g_critical("Sample module init()");
10 }
11
12 G_MODULE_EXPORT void destroy() {
13 g_critical("Sample module destroy()");
14 }
15
This page took 0.029564 seconds and 4 git commands to generate.