1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-14 19:24:43 +03:00
Günther Deschner 28ac552381 Re-run make idl. The pidl generated code now fully complies to coding standards.
Guenther
(This used to be commit 3d34c87612138e4457e824e1a6e3981d1c3fe238)
2008-01-09 11:59:52 +01:00

217 lines
3.7 KiB
C

/*
* Unix SMB/CIFS implementation.
* client auto-generated by pidl. DO NOT MODIFY!
*/
#include "includes.h"
#include "librpc/gen_ndr/cli_unixinfo.h"
NTSTATUS rpccli_unixinfo_SidToUid(struct rpc_pipe_client *cli,
TALLOC_CTX *mem_ctx,
struct dom_sid sid,
uint64_t *uid)
{
struct unixinfo_SidToUid r;
NTSTATUS status;
/* In parameters */
r.in.sid = sid;
if (DEBUGLEVEL >= 10) {
NDR_PRINT_IN_DEBUG(unixinfo_SidToUid, &r);
}
status = cli_do_rpc_ndr(cli,
mem_ctx,
PI_UNIXINFO,
&ndr_table_unixinfo,
NDR_UNIXINFO_SIDTOUID,
&r);
if (!NT_STATUS_IS_OK(status)) {
return status;
}
if (DEBUGLEVEL >= 10) {
NDR_PRINT_OUT_DEBUG(unixinfo_SidToUid, &r);
}
if (NT_STATUS_IS_ERR(status)) {
return status;
}
/* Return variables */
*uid = *r.out.uid;
/* Return result */
return r.out.result;
}
NTSTATUS rpccli_unixinfo_UidToSid(struct rpc_pipe_client *cli,
TALLOC_CTX *mem_ctx,
uint64_t uid,
struct dom_sid *sid)
{
struct unixinfo_UidToSid r;
NTSTATUS status;
/* In parameters */
r.in.uid = uid;
if (DEBUGLEVEL >= 10) {
NDR_PRINT_IN_DEBUG(unixinfo_UidToSid, &r);
}
status = cli_do_rpc_ndr(cli,
mem_ctx,
PI_UNIXINFO,
&ndr_table_unixinfo,
NDR_UNIXINFO_UIDTOSID,
&r);
if (!NT_STATUS_IS_OK(status)) {
return status;
}
if (DEBUGLEVEL >= 10) {
NDR_PRINT_OUT_DEBUG(unixinfo_UidToSid, &r);
}
if (NT_STATUS_IS_ERR(status)) {
return status;
}
/* Return variables */
*sid = *r.out.sid;
/* Return result */
return r.out.result;
}
NTSTATUS rpccli_unixinfo_SidToGid(struct rpc_pipe_client *cli,
TALLOC_CTX *mem_ctx,
struct dom_sid sid,
uint64_t *gid)
{
struct unixinfo_SidToGid r;
NTSTATUS status;
/* In parameters */
r.in.sid = sid;
if (DEBUGLEVEL >= 10) {
NDR_PRINT_IN_DEBUG(unixinfo_SidToGid, &r);
}
status = cli_do_rpc_ndr(cli,
mem_ctx,
PI_UNIXINFO,
&ndr_table_unixinfo,
NDR_UNIXINFO_SIDTOGID,
&r);
if (!NT_STATUS_IS_OK(status)) {
return status;
}
if (DEBUGLEVEL >= 10) {
NDR_PRINT_OUT_DEBUG(unixinfo_SidToGid, &r);
}
if (NT_STATUS_IS_ERR(status)) {
return status;
}
/* Return variables */
*gid = *r.out.gid;
/* Return result */
return r.out.result;
}
NTSTATUS rpccli_unixinfo_GidToSid(struct rpc_pipe_client *cli,
TALLOC_CTX *mem_ctx,
uint64_t gid,
struct dom_sid *sid)
{
struct unixinfo_GidToSid r;
NTSTATUS status;
/* In parameters */
r.in.gid = gid;
if (DEBUGLEVEL >= 10) {
NDR_PRINT_IN_DEBUG(unixinfo_GidToSid, &r);
}
status = cli_do_rpc_ndr(cli,
mem_ctx,
PI_UNIXINFO,
&ndr_table_unixinfo,
NDR_UNIXINFO_GIDTOSID,
&r);
if (!NT_STATUS_IS_OK(status)) {
return status;
}
if (DEBUGLEVEL >= 10) {
NDR_PRINT_OUT_DEBUG(unixinfo_GidToSid, &r);
}
if (NT_STATUS_IS_ERR(status)) {
return status;
}
/* Return variables */
*sid = *r.out.sid;
/* Return result */
return r.out.result;
}
NTSTATUS rpccli_unixinfo_GetPWUid(struct rpc_pipe_client *cli,
TALLOC_CTX *mem_ctx,
uint32_t *count,
uint64_t *uids,
struct unixinfo_GetPWUidInfo *infos)
{
struct unixinfo_GetPWUid r;
NTSTATUS status;
/* In parameters */
r.in.count = count;
r.in.uids = uids;
if (DEBUGLEVEL >= 10) {
NDR_PRINT_IN_DEBUG(unixinfo_GetPWUid, &r);
}
status = cli_do_rpc_ndr(cli,
mem_ctx,
PI_UNIXINFO,
&ndr_table_unixinfo,
NDR_UNIXINFO_GETPWUID,
&r);
if (!NT_STATUS_IS_OK(status)) {
return status;
}
if (DEBUGLEVEL >= 10) {
NDR_PRINT_OUT_DEBUG(unixinfo_GetPWUid, &r);
}
if (NT_STATUS_IS_ERR(status)) {
return status;
}
/* Return variables */
*count = *r.out.count;
memcpy(infos, r.out.infos, *r.in.count);
/* Return result */
return r.out.result;
}