examples
[lttv.git] / ltt / branches / poly / lttv / plugins / samples / samplemodule.c
CommitLineData
3e9ee4c8 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
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.022511 seconds and 4 git commands to generate.