~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/arch/unix/uiscreenshot.h

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-03-27 13:06:04 UTC
  • mfrom: (4 hoary)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20050327130604-zodmv0i60dbbmcik
Tags: 1.16-3
Apply patch from Andreas Jochens <aj@andaco.de> to correct building on
AMD64 and GCC 4.x (closes: #300936)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * uiscreenshot.h - Screenshot UI.
3
3
 *
4
4
 * Written by
5
 
 *  Andreas Boose <boose@linux.rz.fh-hannover.de>
 
5
 *  Andreas Boose <viceteam@t-online.de>
6
6
 *
7
7
 * This file is part of VICE, the Versatile Commodore Emulator.
8
8
 * See README for copyright notice.
33
33
#define UISS_BMP 0
34
34
#define UISS_PNG 1
35
35
 
36
 
extern int ui_screenshot_dialog(char *, int);
 
36
struct video_canvas_s;
 
37
 
 
38
extern int ui_screenshot_dialog(char *, struct video_canvas_s *canvas);
 
39
extern void uiscreenshot_shutdown(void);
37
40
 
38
41
#endif
39
42