Revert some idl changes from r49286 and r49293, that broke mouse
and keyboard in 2nd stage.

svn path=/branches/cmake-bringup/; revision=50011
This commit is contained in:
Timo Kreuzer 2010-12-11 17:04:24 +00:00
parent e829be1010
commit 6d9a17264d
2 changed files with 8 additions and 4 deletions

View file

@ -2600,10 +2600,11 @@ DWORD ROpenServiceW(
/* Function 17 */
DWORD RQueryServiceConfigW(
SC_RPC_HANDLE hService,
LPQUERY_SERVICE_CONFIGW lpServiceConfig,
LPBYTE lpBuf, //LPQUERY_SERVICE_CONFIGW lpServiceConfig,
DWORD cbBufSize,
LPBOUNDED_DWORD_8K pcbBytesNeeded)
{
LPQUERY_SERVICE_CONFIGW lpServiceConfig = (LPQUERY_SERVICE_CONFIGW)lpBuf;
DWORD dwError = ERROR_SUCCESS;
PSERVICE_HANDLE hSvc;
PSERVICE lpService = NULL;
@ -3777,10 +3778,11 @@ DWORD ROpenServiceA(
/* Function 29 */
DWORD RQueryServiceConfigA(
SC_RPC_HANDLE hService,
LPQUERY_SERVICE_CONFIGA lpServiceConfig,
LPBYTE lpBuf, //LPQUERY_SERVICE_CONFIGA lpServiceConfig,
DWORD cbBufSize,
LPBOUNDED_DWORD_8K pcbBytesNeeded)
{
LPQUERY_SERVICE_CONFIGA lpServiceConfig = (LPQUERY_SERVICE_CONFIGA)lpBuf;
DWORD dwError = ERROR_SUCCESS;
PSERVICE_HANDLE hSvc;
PSERVICE lpService = NULL;