~ubuntu-branches/ubuntu/natty/vice/natty

« back to all changes in this revision

Viewing changes to src/archapi.h

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2010-02-11 18:30:16 UTC
  • mfrom: (1.1.8 upstream) (9.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100211183016-f6n8usn3tzp0u6dp
Tags: 2.2.dfsg-1
* New upstream release, C64 DTV is included so update package description
  and add it to the menu.
* Drop patch fixing build failure with gcc-4.4 , applied upstream.
* Fix some lintian problems and clean up debian/rules .

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
/* Do not include this header file, include `archdep.h' instead.  */
28
28
 
29
 
#ifndef _ARCHAPI
30
 
#define _ARCHAPI
 
29
#ifndef VICE_ARCHAPI
 
30
#define VICE_ARCHAPI
31
31
 
32
32
#include <stdarg.h>
33
33
#include <stdio.h>
55
55
/* Fliplist.  */
56
56
extern char *archdep_default_fliplist_file_name(void);
57
57
 
 
58
/* Autostart-PRG */
 
59
extern char *archdep_default_autostart_disk_image_file_name(void);
 
60
 
58
61
/* Logfile stuff.  */
59
62
extern FILE *archdep_open_default_log_file(void);
60
63
extern int archdep_default_logger(const char *level_string, const char *txt);
87
90
extern int archdep_file_is_blockdev(const char *name);
88
91
extern int archdep_file_is_chardev(const char *name);
89
92
 
 
93
/* Networking. */
 
94
extern int archdep_network_init(void);
 
95
extern void archdep_network_shutdown(void);
 
96
 
90
97
/* Free everything on exit.  */
91
98
extern void archdep_shutdown(void);
92
99
 
93
100
#endif
94