Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
2da25d9c
Commit
2da25d9c
authored
Sep 15, 2003
by
Christian Costa
Committed by
Alexandre Julliard
Sep 15, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added midi support to the ALSA driver.
parent
b2b2c479
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
1 deletion
+6
-1
Makefile.in
dlls/winmm/winealsa/Makefile.in
+2
-1
alsa.c
dlls/winmm/winealsa/alsa.c
+1
-0
alsa.h
dlls/winmm/winealsa/alsa.h
+1
-0
midi.c
dlls/winmm/winealsa/midi.c
+0
-0
winealsa.drv.spec
dlls/winmm/winealsa/winealsa.drv.spec
+2
-0
No files found.
dlls/winmm/winealsa/Makefile.in
View file @
2da25d9c
...
...
@@ -12,7 +12,8 @@ SYMBOLFILE = $(MODULE).tmp.o
C_SRCS
=
\
audio.c
\
audio_05.c
\
alsa.c
alsa.c
\
midi.c
@MAKE_DLL_RULES@
...
...
dlls/winmm/winealsa/alsa.c
View file @
2da25d9c
...
...
@@ -74,6 +74,7 @@ LONG CALLBACK ALSA_DriverProc(DWORD dwDevID, HDRVR hDriv, DWORD wMsg,
switch
(
wMsg
)
{
#ifdef HAVE_ALSA
case
DRV_LOAD
:
ALSA_WaveInit
();
ALSA_MidiInit
();
return
1
;
case
DRV_FREE
:
return
1
;
case
DRV_OPEN
:
return
ALSA_drvOpen
((
LPSTR
)
dwParam1
);
...
...
dlls/winmm/winealsa/alsa.h
View file @
2da25d9c
...
...
@@ -29,3 +29,4 @@
#endif
extern
LONG
ALSA_WaveInit
(
void
);
extern
LONG
ALSA_MidiInit
(
void
);
dlls/winmm/winealsa/midi.c
0 → 100644
View file @
2da25d9c
This diff is collapsed.
Click to expand it.
dlls/winmm/winealsa/winealsa.drv.spec
View file @
2da25d9c
@ stdcall DriverProc(long long long long long) ALSA_DriverProc
@ stdcall wodMessage(long long long long long) ALSA_wodMessage
@ stdcall midMessage(long long long long long) ALSA_midMessage
@ stdcall modMessage(long long long long long) ALSA_modMessage
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment