mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 13:53:05 +00:00
[CMAKE]
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:
parent
e829be1010
commit
6d9a17264d
2 changed files with 8 additions and 4 deletions
|
@ -2600,10 +2600,11 @@ DWORD ROpenServiceW(
|
||||||
/* Function 17 */
|
/* Function 17 */
|
||||||
DWORD RQueryServiceConfigW(
|
DWORD RQueryServiceConfigW(
|
||||||
SC_RPC_HANDLE hService,
|
SC_RPC_HANDLE hService,
|
||||||
LPQUERY_SERVICE_CONFIGW lpServiceConfig,
|
LPBYTE lpBuf, //LPQUERY_SERVICE_CONFIGW lpServiceConfig,
|
||||||
DWORD cbBufSize,
|
DWORD cbBufSize,
|
||||||
LPBOUNDED_DWORD_8K pcbBytesNeeded)
|
LPBOUNDED_DWORD_8K pcbBytesNeeded)
|
||||||
{
|
{
|
||||||
|
LPQUERY_SERVICE_CONFIGW lpServiceConfig = (LPQUERY_SERVICE_CONFIGW)lpBuf;
|
||||||
DWORD dwError = ERROR_SUCCESS;
|
DWORD dwError = ERROR_SUCCESS;
|
||||||
PSERVICE_HANDLE hSvc;
|
PSERVICE_HANDLE hSvc;
|
||||||
PSERVICE lpService = NULL;
|
PSERVICE lpService = NULL;
|
||||||
|
@ -3777,10 +3778,11 @@ DWORD ROpenServiceA(
|
||||||
/* Function 29 */
|
/* Function 29 */
|
||||||
DWORD RQueryServiceConfigA(
|
DWORD RQueryServiceConfigA(
|
||||||
SC_RPC_HANDLE hService,
|
SC_RPC_HANDLE hService,
|
||||||
LPQUERY_SERVICE_CONFIGA lpServiceConfig,
|
LPBYTE lpBuf, //LPQUERY_SERVICE_CONFIGA lpServiceConfig,
|
||||||
DWORD cbBufSize,
|
DWORD cbBufSize,
|
||||||
LPBOUNDED_DWORD_8K pcbBytesNeeded)
|
LPBOUNDED_DWORD_8K pcbBytesNeeded)
|
||||||
{
|
{
|
||||||
|
LPQUERY_SERVICE_CONFIGA lpServiceConfig = (LPQUERY_SERVICE_CONFIGA)lpBuf;
|
||||||
DWORD dwError = ERROR_SUCCESS;
|
DWORD dwError = ERROR_SUCCESS;
|
||||||
PSERVICE_HANDLE hSvc;
|
PSERVICE_HANDLE hSvc;
|
||||||
PSERVICE lpService = NULL;
|
PSERVICE lpService = NULL;
|
||||||
|
|
|
@ -434,7 +434,8 @@ interface svcctl
|
||||||
/* Function 17 */
|
/* Function 17 */
|
||||||
DWORD RQueryServiceConfigW(
|
DWORD RQueryServiceConfigW(
|
||||||
[in] SC_RPC_HANDLE hService,
|
[in] SC_RPC_HANDLE hService,
|
||||||
[out] LPQUERY_SERVICE_CONFIGW lpServiceConfig,
|
[out, unique, size_is(cbBufSize)] LPBYTE lpServiceConfig,
|
||||||
|
/* FIXME: should be [out] LPQUERY_SERVICE_CONFIGW lpServiceConfig, */
|
||||||
[in, range(0, 1024*8)] DWORD cbBufSize,
|
[in, range(0, 1024*8)] DWORD cbBufSize,
|
||||||
[out] LPBOUNDED_DWORD_8K pcbBytesNeeded);
|
[out] LPBOUNDED_DWORD_8K pcbBytesNeeded);
|
||||||
|
|
||||||
|
@ -545,7 +546,8 @@ interface svcctl
|
||||||
/* Function 29 */
|
/* Function 29 */
|
||||||
DWORD RQueryServiceConfigA(
|
DWORD RQueryServiceConfigA(
|
||||||
[in] SC_RPC_HANDLE hService,
|
[in] SC_RPC_HANDLE hService,
|
||||||
[out] LPQUERY_SERVICE_CONFIGA lpServiceConfig,
|
[out, unique, size_is(cbBufSize)] LPBYTE lpServiceConfig,
|
||||||
|
/* FIXME: should be [out] LPQUERY_SERVICE_CONFIGA lpServiceConfig, */
|
||||||
[in, range(0, 1024*8)] DWORD cbBufSize,
|
[in, range(0, 1024*8)] DWORD cbBufSize,
|
||||||
[out] LPBOUNDED_DWORD_8K pcbBytesNeeded);
|
[out] LPBOUNDED_DWORD_8K pcbBytesNeeded);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue