~ubuntu-branches/ubuntu/precise/mame/precise-proposed

« back to all changes in this revision

Viewing changes to src/emu/sound/es5503.h

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Falco
  • Date: 2010-08-01 23:18:31 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100801231831-9dj2qbsynutixsoe
Tags: 0.139-0ubuntu1
* New upstream release (LP: #612070)
* debian/contrib/manpages: removed, accepted upstream
* debian/patches/:
  - deprecated_gtk_macros: removed, fixed upstream
  - missing_newline.patch: removed, fixed upstream
  - typos.patch: removed, fixed upstream
* debian/rules: new variables SYMLEVEL and DUMPSYM
* mame-tools: ldplayer removed, possibly for good (FTBFS upstream)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
#ifndef __ES5503_H__
4
4
#define __ES5503_H__
5
5
 
 
6
#include "devlegcy.h"
 
7
 
6
8
typedef struct _es5503_interface es5503_interface;
7
9
struct _es5503_interface
8
10
{
15
17
WRITE8_DEVICE_HANDLER( es5503_w );
16
18
void es5503_set_base(running_device *device, UINT8 *wavemem);
17
19
 
18
 
DEVICE_GET_INFO( es5503 );
19
 
#define SOUND_ES5503 DEVICE_GET_INFO_NAME( es5503 )
 
20
DECLARE_LEGACY_SOUND_DEVICE(ES5503, es5503);
20
21
 
21
22
#endif /* __ES5503_H__ */