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

« back to all changes in this revision

Viewing changes to src/arch/win32/statusbar.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:
27
27
#ifndef _STATUSBAR_H_
28
28
#define _STATUSBAR_H_
29
29
 
 
30
#define EVENT_OFF       0
 
31
#define EVENT_RECORDING 1
 
32
#define EVENT_PLAYBACK  2
 
33
 
30
34
void statusbar_create(HWND hwnd);
31
35
void statusbar_destroy(void);
32
36
void statusbar_create_brushes(void);
39
43
void statusbar_display_tape_motor_status(int motor);
40
44
void statusbar_display_tape_control_status(int control);
41
45
void statusbar_display_tape_counter(int counter);
 
46
void statusbar_display_joyport(BYTE *ui_joystick_status);
 
47
void statusbar_event_status(int mode);
 
48
void statusbar_event_time(unsigned int current, unsigned int total);
42
49
void statusbar_handle_WMSIZE(UINT msg, WPARAM wparam, LPARAM lparam, int window_index);
43
50
void statusbar_handle_WMDRAWITEM(WPARAM wparam, LPARAM lparam);
44
51