~ubuntu-branches/ubuntu/trusty/vice/trusty-proposed

« back to all changes in this revision

Viewing changes to src/arch/amigaos/mousedrv.h

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2013-07-28 20:38:23 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20130728203823-l905cztdj615zq2p
Tags: 2.4.dfsg-1
* New upstream release (closes: #693065, #693641).
* Drop vice-ffmpeg.patch , applied upstream.
* Disable architecture specific compilation (closes: #686400, #714136).

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
extern void mousedrv_mouse_changed(void);
38
38
 
39
 
extern BYTE mousedrv_get_x(void);
40
 
extern BYTE mousedrv_get_y(void);
 
39
extern int mousedrv_get_x(void);
 
40
extern int mousedrv_get_y(void);
 
41
extern unsigned long mousedrv_get_timestamp(void);
41
42
 
42
43
extern void mousedrv_sync(void);
43
44
 
44
45
#endif
45