Author: sserapion Date: Thu Dec 31 08:26:46 2009 New Revision: 44820
URL: http://svn.reactos.org/svn/reactos?rev=44820&view=rev Log: Fix build after r44818
Modified: branches/ros-amd64-bringup/reactos/dll/win32/winmm/mci.c
Modified: branches/ros-amd64-bringup/reactos/dll/win32/winmm/mci.c URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/dll/wi... ============================================================================== --- branches/ros-amd64-bringup/reactos/dll/win32/winmm/mci.c [iso-8859-1] (original) +++ branches/ros-amd64-bringup/reactos/dll/win32/winmm/mci.c [iso-8859-1] Thu Dec 31 08:26:46 2009 @@ -2249,12 +2249,12 @@ /************************************************************************** * mciGetCreatorTask [WINMM.@] */ -HANDLE WINAPI mciGetCreatorTask(MCIDEVICEID uDeviceID) +HTASK WINAPI mciGetCreatorTask(MCIDEVICEID uDeviceID) { LPWINE_MCIDRIVER wmd; - HANDLE ret = 0; - - if ((wmd = MCI_GetDriver(uDeviceID))) ret = wmd->CreatorThread; + HTASK ret = 0; + + if ((wmd = MCI_GetDriver(uDeviceID))) ret = (HTASK)wmd->CreatorThread;
TRACE("(%u) => %p\n", uDeviceID, ret); return ret;