minor alignment change
[lttv.git] / ltt / branches / poly / lttv / modules / examples / sampledep.c
... / ...
CommitLineData
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/* Include module.h from lttv headers for module loading */
9#include <lttv/module.h>
10
11G_MODULE_EXPORT void init(int argc, char * argv[], LttvModule *self) {
12 g_critical("Sample module dependant init()");
13
14 lttv_module_require(self, "samplemodule",argc,argv);
15}
16
17G_MODULE_EXPORT void destroy() {
18 g_critical("Sample module dependant destroy()");
19}
20
This page took 0.021619 seconds and 4 git commands to generate.