Skip to content

Commit

Permalink
Minor doc updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
ahlstromcj committed Jul 1, 2023
1 parent aea2453 commit 84adb1f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ Windows, and using a conventional source tarball.
* Fixed bug writing pattern-dump files from event editor.
* Improved modification detection and display in the pattern editor.
* Added the pattern port number to the song summary output.
* Updated alsa.m4 to avoid obsolete AC_TRY_COMPILE warning. Old
version stored in contrib/scripts.
* Version 0.99.5:
* Greatly enhanced the event editor tab and the events that can
be view and modified.
Expand Down
8 changes: 7 additions & 1 deletion doc/latex/tex/references.tex
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
% \library Documents
% \author Chris Ahlstrom
% \date 2015-08-31
% \update 2023-06-28
% \update 2023-06-30
% \version $Revision$
% \license $XPC_GPL_LICENSE$
%
Expand Down Expand Up @@ -94,6 +94,12 @@ \section{References}
\url{https://libreav.org/software/seq66}.
2019.

\bibitem{loopmidi}
Tobias Erichsen.
\emph{Private stuff \& software for audio, midi and more}
\url{https://www.tobias-erichsen.de/software.html}.
2022.

\bibitem{midihowto}
Phil Kerr.
\emph{The Linux MIDI-HOWTO.}
Expand Down
12 changes: 6 additions & 6 deletions seq_portmidi/src/pmwinmm.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ static void CALLBACK winmm_streamout_callback
);

/*
* Note that this macro is undefined, as it is in the original PortMidi
* Note that this macro was undefined, as it is in the original PortMidi
* library.
*/

Expand Down Expand Up @@ -1518,10 +1518,10 @@ winmm_out_open (PmInternal * midi, void * UNUSED(driverinfo))
if (midi->latency == 0) /* open the device */
{
/*
* Use simple MIDI out calls. Note that winmm_streamout_callback() is
* Note: the same callback function as for StreamOpen(). Please note that
* the error codes returned by Microsoft functions don't line up
* completely with the values in the PmError enumeration.
* Use simple MIDI out calls. Note: the same callback function as
* for StreamOpen(). Please note that the error codes returned by
* Microsoft functions don't line up completely with the values in the
* PmError enumeration.
*/

Pm_set_hosterror
Expand Down Expand Up @@ -2147,7 +2147,7 @@ winmm_synchronize (PmInternal * midi)
static void CALLBACK
winmm_out_callback
(
HMIDIOUT hmo, // unused
HMIDIOUT hmo,
UINT wMsg,
DWORD_PTR dwInstance,
DWORD_PTR dwParam1,
Expand Down

0 comments on commit 84adb1f

Please sign in to comment.