summaryrefslogtreecommitdiff
path: root/opl/opl_internal.h
diff options
context:
space:
mode:
authorSimon Howard2009-05-27 18:00:35 +0000
committerSimon Howard2009-05-27 18:00:35 +0000
commit1d92cd1477d44245c151c1f39b15c356019d8359 (patch)
tree8424e5fa5f4ea13c6c20b26005c799c8a4dbbd14 /opl/opl_internal.h
parentd8ada5c41da3eec5ef163d9efac9cb5dbdc2cb6b (diff)
downloadchocolate-doom-1d92cd1477d44245c151c1f39b15c356019d8359.tar.gz
chocolate-doom-1d92cd1477d44245c151c1f39b15c356019d8359.tar.bz2
chocolate-doom-1d92cd1477d44245c151c1f39b15c356019d8359.zip
Oops.
Subversion-branch: /branches/opl-branch Subversion-revision: 1533
Diffstat (limited to 'opl/opl_internal.h')
-rw-r--r--opl/opl_internal.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/opl/opl_internal.h b/opl/opl_internal.h
index 964f55cc..7c1e8854 100644
--- a/opl/opl_internal.h
+++ b/opl/opl_internal.h
@@ -46,51 +46,3 @@ typedef struct
#endif /* #ifndef OPL_INTERNAL_H */
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
-//
-// Copyright(C) 2009 Simon Howard
-//
-// This program is free software; you can redistribute it and/or
-// modify it under the terms of the GNU General Public License
-// as published by the Free Software Foundation; either version 2
-// of the License, or (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
-// DESCRIPTION:
-// OPL internal interface.
-//
-//-----------------------------------------------------------------------------
-
-
-#ifndef OPL_INTERNAL_H
-#define OPL_INTERNAL_H
-
-#include "opl.h"
-
-typedef int (*opl_init_func)(unsigned int port_base);
-typedef void (*opl_shutdown_func)(void);
-typedef unsigned int (*opl_read_port_func)(opl_port_t port);
-typedef void (*opl_write_port_func)(opl_port_t port, unsigned int value);
-
-typedef struct
-{
- char *name;
-
- opl_init_func init_func;
- opl_shutdown_func shutdown_func;
- opl_read_port_func read_port_func;
- opl_write_port_func write_port_func;
-} opl_driver_t;
-
-#endif /* #ifndef OPL_INTERNAL_H */
-