~ubuntu-branches/ubuntu/wily/mupen64plus/wily

« back to all changes in this revision

Viewing changes to jttl_audio/gui_none.c

  • Committer: Bazaar Package Importer
  • Author(s): Sven Eckelmann
  • Date: 2011-07-24 14:23:26 UTC
  • mfrom: (10.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20110724142326-x9z5qu8j9jecrmod
Tags: 1.99.4+2
* Upload to unstable
* Remove overrides for lintian warning about change to native package
* Update Vcs-* fields to new anonscm.debian.org URLs in debian/control
* Fix spelling of "Flexible" in debian/control (Closes: #633693)
* Mark all targets in debian/rules as phony
* Add some information about the mupen64plus 2.0 vision in debian/NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2
 
 *   Mupen64plus - nogui.h                                                 *
3
 
 *   Mupen64Plus homepage: http://code.google.com/p/mupen64plus/           *
4
 
 *   Copyright (C) 2008 Tillin9 wahrhaft                                   *
5
 
 *                                                                         *
6
 
 *   This program is free software; you can redistribute it and/or modify  *
7
 
 *   it under the terms of the GNU General Public License as published by  *
8
 
 *   the Free Software Foundation; either version 2 of the License, or     *
9
 
 *   (at your option) any later version.                                   *
10
 
 *                                                                         *
11
 
 *   This program is distributed in the hope that it will be useful,       *
12
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
13
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
14
 
 *   GNU General Public License for more details.                          *
15
 
 *                                                                         *
16
 
 *   You should have received a copy of the GNU General Public License     *
17
 
 *   along with this program; if not, write to the                         *
18
 
 *   Free Software Foundation, Inc.,                                       *
19
 
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
20
 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
21
 
 
22
 
#include <stdlib.h>
23
 
#include <stdio.h>
24
 
 
25
 
#include "gui.h"
26
 
 
27
 
#include "../main/winlnxdefs.h"
28
 
#include "../main/version.h"
29
 
 
30
 
EXPORT void CALL DllConfig(HWND hParent)
31
 
{
32
 
printf("JttL's SDL Audio compiled with GUI=NONE. Please edit the config file\nin SHAREDIR/jttl_audio.conf.conf manually or recompile plugin with a GUI.\n");
33
 
}
34
 
 
35
 
EXPORT void CALL DllAbout(HWND hParent)
36
 
{
37
 
printf("Mupen64 SDL Audio Plugin %s.\nOriginal code by JttL.\nGtk GUI by wahrhaft.\nFixes and features by Richard42, DarkJeztr, Tillin9, and others.\n", PLUGIN_VERSION);
38
 
}
39
 
 
40
 
void display_test(const char *Message)
41
 
{
42
 
printf("%s\n", Message);
43
 
}
44