source: roaraudio/plugins/universal/helloworld.c @ 5440:3bd9f7ab48ed

Last change on this file since 5440:3bd9f7ab48ed was 5440:3bd9f7ab48ed, checked in by phi, 12 years ago

added some comments

File size: 2.4 KB
RevLine 
[5439]1//helloworld.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2012
5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 */
25
26#include <roaraudio.h>
27
[5440]28// A simple function printing our message.
[5439]29static int hw_init (struct roar_dl_librarypara * para) {
[5440]30 (void)para; // We ignore all parameters passed to us.
[5439]31
32 roar_vio_printf(roar_stdout, "Hello world!\n");
33
34 return 0;
35}
36
[5440]37// This struct contains the AppSched pointers.
[5439]38static struct roar_dl_appsched sched = {
39 .init   = hw_init,
40 .free   = NULL,
41 .update = NULL,
42 .tick   = NULL,
43 .wait   = NULL
44};
45
[5440]46// This is the plugin control block.
[5439]47ROAR_DL_PLUGIN_START(helloworld) {
[5440]48 // Here we set the name and vendor of our plugin.
49 // If you have no Vendor ID you need to use ROAR_DL_PLUGIN_META_PRODUCT_NV().
[5439]50 ROAR_DL_PLUGIN_META_PRODUCT_NIV("helloworld", ROAR_VID_ROARAUDIO, ROAR_VNAME_ROARAUDIO);
[5440]51
52 // This sets the version of your plugin.
[5439]53 ROAR_DL_PLUGIN_META_VERSION(ROAR_VERSION_STRING);
[5440]54
55 // This sets the license of your plugin.
56 // If there is no tag for the license you use you can just
57 // use ROAR_DL_PLUGIN_META_LICENSE().
[5439]58 ROAR_DL_PLUGIN_META_LICENSE_TAG(GPLv3_0);
[5440]59
60 // This sets the author and contact infos.
61 // There are several other macros to do this with other parameters.
62 // See ROAR_DL_PLUGIN_META_CONTACT*() in the header or documentation.
[5439]63 ROAR_DL_PLUGIN_META_CONTACT_FLNE("Philipp", "Schafft", "ph3-der-loewe", "lion@lion.leolix.org");
[5440]64
65 // This sets the description for your plugin.
[5439]66 ROAR_DL_PLUGIN_META_DESC("This plugin prints the string \"Hello world!\".");
[5440]67
68 // Here the AppSched block from above is registered.
[5439]69 ROAR_DL_PLUGIN_REG_APPSCHED(&sched);
[5440]70
71// This is the end of the control block.
[5439]72} ROAR_DL_PLUGIN_END
73
74//ll
Note: See TracBrowser for help on using the repository browser.