~ubuntu-branches/ubuntu/raring/vice/raring

« 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
  • mto: (9.1.1 lenny) (1.1.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20050201113026-6gy97mcqlg2ykg4z
Tags: upstream-1.16
ImportĀ upstreamĀ versionĀ 1.16

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