1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Remove unused marshalling for NTSVCS_GET_DEVICE_LIST_SIZE.

Guenther
This commit is contained in:
Günther Deschner 2008-02-18 00:24:57 +01:00
parent da6636577d
commit bc1df536fa
2 changed files with 0 additions and 66 deletions

View File

@ -33,19 +33,6 @@
#define NTSVCS_GET_VERSION_INTERNAL 0x3e
/**************************/
typedef struct {
UNISTR2 *devicename;
uint32 flags;
} NTSVCS_Q_GET_DEVICE_LIST_SIZE;
typedef struct {
uint32 size;
WERROR status;
} NTSVCS_R_GET_DEVICE_LIST_SIZE;
/**************************/
typedef struct {

View File

@ -22,59 +22,6 @@
#undef DBGC_CLASS
#define DBGC_CLASS DBGC_RPC_PARSE
/*******************************************************************
********************************************************************/
/*******************************************************************
********************************************************************/
bool ntsvcs_io_q_get_device_list_size(const char *desc, NTSVCS_Q_GET_DEVICE_LIST_SIZE *q_u, prs_struct *ps, int depth)
{
if (q_u == NULL)
return False;
prs_debug(ps, depth, desc, "ntsvcs_io_q_get_device_list_size");
depth++;
if(!prs_align(ps))
return False;
if ( !prs_pointer("devicename", ps, depth, (void*)&q_u->devicename, sizeof(UNISTR2), (PRS_POINTER_CAST)prs_io_unistr2) )
return False;
if ( !prs_align(ps) )
return False;
if ( !prs_uint32("flags", ps, depth, &q_u->flags) )
return False;
return True;
}
/*******************************************************************
********************************************************************/
bool ntsvcs_io_r_get_device_list_size(const char *desc, NTSVCS_R_GET_DEVICE_LIST_SIZE *r_u, prs_struct *ps, int depth)
{
if ( !r_u )
return False;
prs_debug(ps, depth, desc, "ntsvcs_io_r_get_device_list_size");
depth++;
if(!prs_align(ps))
return False;
if(!prs_uint32("size", ps, depth, &r_u->size))
return False;
if(!prs_werror("status", ps, depth, &r_u->status))
return False;
return True;
}
/*******************************************************************
********************************************************************/