change back the glib include
[lttv.git] / ltt / branches / poly / lttv / plugins / 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.028791 seconds and 4 git commands to generate.