Author: hpoussin Date: Thu Apr 10 09:52:41 2008 New Revision: 32907
URL: http://svn.reactos.org/svn/reactos?rev=32907&view=rev Log: Fix build
Modified: trunk/reactos/base/services/umpnpmgr/umpnpmgr.c trunk/reactos/dll/win32/setupapi/cfgmgr.c
Modified: trunk/reactos/base/services/umpnpmgr/umpnpmgr.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/services/umpnpmgr/umpn... ============================================================================== --- trunk/reactos/base/services/umpnpmgr/umpnpmgr.c [iso-8859-1] (original) +++ trunk/reactos/base/services/umpnpmgr/umpnpmgr.c [iso-8859-1] Thu Apr 10 09:52:41 2008 @@ -1252,7 +1252,7 @@ /* Function 38 */ CONFIGRET PNP_IsDockStationPresent(handle_t BindingHandle, - unsigned long *Present) + BOOL *Present) { HKEY hKey; DWORD dwType;
Modified: trunk/reactos/dll/win32/setupapi/cfgmgr.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/cfgmgr.c... ============================================================================== --- trunk/reactos/dll/win32/setupapi/cfgmgr.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/setupapi/cfgmgr.c [iso-8859-1] Thu Apr 10 09:52:41 2008 @@ -2569,7 +2569,7 @@ }
return PNP_IsDockStationPresent(BindingHandle, - (unsigned long *)pbPresent); + pbPresent); }