Changeset 3021
- Timestamp:
- 2003年02月26日 21時28分39秒 (6 years ago)
- Files:
-
- work/cvs2svn/src/ChangeLog.Meadow (modified) (2 diffs)
- work/cvs2svn/src/keyboard.c (modified) (1 diff)
- work/cvs2svn/src/mw32mci.c (modified) (2 diffs)
- work/cvs2svn/src/mw32mci.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
work/cvs2svn/src/ChangeLog.Meadow
r3019 r3021 12 12 (syms_of_mw32mci): Ditto. 13 13 (init_mw32mci): Ditto. 14 (Qmw32_mci_notify): New lisp object. 14 15 15 16 * makefile.meadow.w32-in (FULL_LINK_FLAGS): Append mw32mci.c. … … 19 20 Update dependancies. 20 21 21 * keyboard.c (make_lispy_event): Convert mw32_mci_event to a lis t22 * keyboard.c (make_lispy_event): Convert mw32_mci_event to a lisp 22 23 object. 24 (make_lispy_event): Modify the lisp object correspond to 25 mw32_mci_event. 23 26 24 27 * emacs.c (main): Add initialization of mw32mci. work/cvs2svn/src/keyboard.c
r3017 r3021 5463 5463 Lisp_Object event_type, device_id, arg; 5464 5464 5465 event_type = Qmw32_mci_notify; 5465 5466 switch (event->code) 5466 5467 { 5467 5468 case MW32_MCI_NOTIFY_ABORTED: 5468 event_type = Qmw32_mci_notify_aborted; 5469 arg = Qnil; 5469 arg = Qmw32_mci_notify_aborted; 5470 5470 break; 5471 5471 case MW32_MCI_NOTIFY_FAILURE: 5472 event_type = Qmw32_mci_notify_failure; 5473 arg = Qnil; 5472 arg = Qmw32_mci_notify_failure; 5474 5473 break; 5475 5474 case MW32_MCI_NOTIFY_SUCCESSFUL: 5476 event_type = Qmw32_mci_notify_successful; 5477 arg = Qnil; 5475 arg = Qmw32_mci_notify_successful; 5478 5476 break; 5479 5477 case MW32_MCI_NOTIFY_SUPERSEDED: 5480 event_type = Qmw32_mci_notify_superseded; 5481 arg = Qnil; 5478 arg = Qmw32_mci_notify_superseded; 5482 5479 break; 5483 5480 default: work/cvs2svn/src/mw32mci.c
r3017 r3021 30 30 31 31 Lisp_Object Qmw32_mci; 32 Lisp_Object Qmw32_mci_notify; 32 33 Lisp_Object Qmw32_mci_notify_aborted; 33 34 Lisp_Object Qmw32_mci_notify_failure; … … 105 106 Qmw32_mci = intern ("mw32-mci"); 106 107 staticpro (&Qmw32_mci); 108 Qmw32_mci_notify = intern ("mw32-mci-notify"); 109 staticpro (&Qmw32_mci_notify); 107 110 Qmw32_mci_notify_aborted = intern ("mw32-mci-notify-aborted"); 108 111 staticpro (&Qmw32_mci_notify_aborted); work/cvs2svn/src/mw32mci.h
r3017 r3021 34 34 35 35 extern Lisp_Object Qmw32_mci; 36 extern Lisp_Object Qmw32_mci_notify; 36 37 extern Lisp_Object Qmw32_mci_notify_aborted; 37 38 extern Lisp_Object Qmw32_mci_notify_failure;
