Commit b5ad46a5 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winmm: Use correct integral type.

parent d1265abb
......@@ -183,7 +183,7 @@ typedef struct _WINMM_QueryInterfaceInfo {
BOOL is_out;
UINT index;
WCHAR *str;
UINT *len_bytes;
ULONG *len_bytes;
} WINMM_QueryInterfaceInfo;
static LRESULT WOD_Open(WINMM_OpenInfo *info);
......@@ -1771,7 +1771,8 @@ exit:
static void WID_PullACMData(WINMM_Device *device)
{
UINT32 packet, packet_bytes;
UINT32 packet;
DWORD packet_bytes;
DWORD flags;
BYTE *data;
WAVEHDR *queue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment