~ubuntu-branches/ubuntu/maverick/vice/maverick

« back to all changes in this revision

Viewing changes to src/kbdbuf.h

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-02-01 11:30:26 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050201113026-3eyakzsmmheclvjg
Tags: 1.16-1
* New upstream version
* Fixes crash on 64-bit architectures (closes: #287640)
* x128 working again (closes: #286767)
* Works fine with /dev/dsp in use (not in the main changelog, but tested
  on my local machine as working).  Presumably, this also takes care of
  the issue with dsp being held.  I'm not sure if this is because I'm
  testing it on a 2.6 kernel now -- if you are still having problems
  with /dev/dsp, please reopen the bugs. (closes: #152952, #207942)
* Don't kill Makefile.in on clean

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
#include "types.h"
31
31
 
32
 
extern int kbd_buf_is_empty(void);
33
 
extern int kbd_buf_init(int location, int plocation, int buffer_size,
34
 
                        CLOCK mincycles);
35
 
extern void kbd_buf_shutdown(void);
36
 
extern int kbd_buf_feed(const char *s);
37
 
extern int kdb_buf_feed_string(const char *string);
38
 
extern void kbd_buf_flush(void);
39
 
extern int kbd_buf_cmdline_options_init(void);
 
32
extern int kbdbuf_is_empty(void);
 
33
extern int kbdbuf_init(int location, int plocation, int buffer_size,
 
34
                       CLOCK mincycles);
 
35
extern void kbdbuf_shutdown(void);
 
36
extern int kbdbuf_feed(const char *s);
 
37
extern int kbdbuf_feed_string(const char *string);
 
38
extern void kbdbuf_flush(void);
 
39
extern int kbdbuf_cmdline_options_init(void);
40
40
 
41
41
#endif
42
42