Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/wiimote/src/external/wiicpp/wiic/speaker.h @ 9780

Last change on this file since 9780 was 9780, checked in by georgr, 10 years ago

WiiCpp library successfully (?) added - won't work without libbluetooth-dev

  • Property svn:executable set to *
File size: 1.2 KB
Line 
1/*
2 *      speaker.h
3 *
4 *      Written By:
5 *              Gabriele Randelli       
6 *              Email: < randelli (--AT--) dis [--DOT--] uniroma1 [--DOT--] it >
7 *
8 *      Copyright 2010
9 *
10 *      This file is part of wiiC.
11 *
12 *      This program is free software; you can redistribute it and/or modify
13 *      it under the terms of the GNU General Public License as published by
14 *      the Free Software Foundation; either version 3 of the License, or
15 *      (at your option) any later version.
16 *
17 *      This program is distributed in the hope that it will be useful,
18 *      but WITHOUT ANY WARRANTY; without even the implied warranty of
19 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 *      GNU General Public License for more details.
21 *
22 *      You should have received a copy of the GNU General Public License
23 *      along with this program.  If not, see <http://www.gnu.org/licenses/>.
24 *
25 *      $Header$
26 *
27 */
28
29/**
30 *      @file
31 *      @brief Handles the Wiimote speakers.
32 */
33#ifndef SPEAKER_H_INCLUDED
34#define SPEAKER_H_INCLUDED
35
36#include "wiic_internal.h"
37
38#ifdef __cplusplus
39extern "C" {
40#endif
41
42void wiic_set_speaker(struct wiimote_t* wm, int status);
43void wiic_mute_speaker(struct wiimote_t* wm, int status);
44void wiic_sound(struct wiimote_t* wm);
45
46#ifdef __cplusplus
47}
48#endif
49
50#endif // SPEAKER_H_INCLUDED
51
Note: See TracBrowser for help on using the repository browser.