Displaying 2 results from an estimated 2 matches for "hwave".
Did you mean:
have
2016 Jul 11
0
[PATCH] wave_out: fix casts
---
src/wave_out.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/wave_out.c b/src/wave_out.c
index 57b5703..0f871b9 100644
--- a/src/wave_out.c
+++ b/src/wave_out.c
@@ -71,7 +71,7 @@ Box ( const char* msg )
*/
static void CALLBACK
-wave_callback ( HWAVE hWave, UINT uMsg, DWORD dwInstance, DWORD dwParam1, DWORD dwParam2 )
+wave_callback ( HWAVEOUT hWave, UINT uMsg, DWORD_PTR dwInstance, DWORD_PTR dwParam1, DWORD_PTR dwParam2 )
{
if ( uMsg == WOM_DONE ) {
EnterCriticalSection ( &cs );
@@ -125,7 +125,7 @@ Set_WIN_Params ( FILE_T dummyFile...
2011 Aug 05
0
Wine release 1.3.26
...include: Add header entries required for SHCreateDefaultContextMenu and CDefFolderMenu_Create2.
shell32/tests: Add tests for SHCreateDefaultContextMenu.
shell32: Implement SHCreateDefaultContextMenu and CDefFolderMenu_Create2.
J?rg H?hle (7):
winmm: Functions that take an open HWAVE don't need StartDevicesThread.
winmm: Replace one HeapAlloc with stack allocation.
winmm: Assign to structs instead of using memcpy.
winmm: Fix memory leak in msacm error path.
winmm: Fix logic conditions.
winmm: Restore checking of callback flags.
winmm: Rem...