1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

Use pidl for _PNP_GetVersion().

Guenther
(This used to be commit 5300ff01b9098ccd78cb38b4d6abc85b2d340a55)
This commit is contained in:
Günther Deschner 2008-02-17 23:17:51 +01:00
parent e99f740b0a
commit 3758f06d0f
2 changed files with 5 additions and 30 deletions

View File

@ -48,23 +48,7 @@ static bool proxy_ntsvcs_call(pipes_struct *p, uint8_t opnum)
static bool api_ntsvcs_get_version(pipes_struct *p)
{
NTSVCS_Q_GET_VERSION q_u;
NTSVCS_R_GET_VERSION r_u;
prs_struct *data = &p->in_data.data;
prs_struct *rdata = &p->out_data.rdata;
ZERO_STRUCT(q_u);
ZERO_STRUCT(r_u);
if(!ntsvcs_io_q_get_version("", &q_u, data, 0))
return False;
r_u.status = _ntsvcs_get_version(p, &q_u, &r_u);
if(!ntsvcs_io_r_get_version("", &r_u, rdata, 0))
return False;
return True;
return proxy_ntsvcs_call(p, NDR_PNP_GETVERSION);
}
/*******************************************************************

View File

@ -34,10 +34,11 @@ static char* get_device_path(TALLOC_CTX *mem_ctx, const char *device )
/********************************************************************
********************************************************************/
WERROR _ntsvcs_get_version( pipes_struct *p, NTSVCS_Q_GET_VERSION *q_u, NTSVCS_R_GET_VERSION *r_u )
WERROR _PNP_GetVersion(pipes_struct *p,
struct PNP_GetVersion *r)
{
r_u->version = 0x00000400; /* no idea what this means */
*r->out.version = 0x0400; /* no idea what this means */
return WERR_OK;
}
@ -197,16 +198,6 @@ WERROR _PNP_Connect(pipes_struct *p,
/****************************************************************
****************************************************************/
WERROR _PNP_GetVersion(pipes_struct *p,
struct PNP_GetVersion *r)
{
p->rng_fault_state = true;
return WERR_NOT_SUPPORTED;
}
/****************************************************************
****************************************************************/
WERROR _PNP_GetGlobalState(pipes_struct *p,
struct PNP_GetGlobalState *r)
{