Added options to run different tests in module batchtest
[lttv.git] / ltt / branches / poly / lttv / modules / examples / samplemodule.c
CommitLineData
3e9ee4c8 1/* Sample module for Linux Trace Toolkit new generation User Interface */
2
3/* Created by Mathieu Desnoyers, may 2003 */
4
858bd80a 5#include <glib.h>
6#include <gmodule.h>
3e9ee4c8 7
8G_MODULE_EXPORT void init() {
9 g_critical("Sample module init()");
10}
11
12G_MODULE_EXPORT void destroy() {
13 g_critical("Sample module destroy()");
14}
15
This page took 0.028374 seconds and 4 git commands to generate.