1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-22 05:57:43 +03:00

winreg.idl: Sync ref change from Samba 3.

This commit is contained in:
Jelmer Vernooij 2008-10-15 17:34:55 +02:00
parent 5437ad8225
commit fed4658c1b
6 changed files with 7 additions and 6 deletions

View File

@ -2,7 +2,7 @@
winreg interface definition
*/
import "lsa.idl", "initshutdown.idl", "security.idl";
import "lsa.idl", "security.idl";
[
uuid("338cd001-2244-31f1-aaaa-900038001003"),

View File

@ -260,7 +260,7 @@ static WERROR rpc_get_value_by_name(TALLOC_CTX *mem_ctx,
ZERO_STRUCT(r);
r.in.handle = &mykeydata->pol;
r.in.value_name = name;
r.in.value_name = &name;
r.in.type = type;
r.in.data = &value;
r.in.size = &val_size;

View File

@ -240,7 +240,7 @@ import "lsa.idl", "security.idl";
/* Function: 0x11 */
[public] WERROR winreg_QueryValue(
[in,ref] policy_handle *handle,
[in] winreg_String value_name,
[in,ref] winreg_String *value_name,
[in,out,unique] winreg_Type *type,
[in,out,unique,size_is(*size),length_is(*length)] uint8 *data,
[in,out,unique] uint32 *size,

View File

@ -457,7 +457,7 @@ static WERROR dcesrv_winreg_QueryValue(struct dcesrv_call_state *dce_call,
case SECURITY_USER:
key = h->data;
result = reg_key_get_value_by_name(mem_ctx, key, r->in.value_name.name,
result = reg_key_get_value_by_name(mem_ctx, key, r->in.value_name->name,
&value_type, &value_data);
if (!W_ERROR_IS_OK(result)) {

View File

@ -197,7 +197,7 @@ static const uint8_t queryvalue_in_data[] = {
static bool queryvalue_in_check(struct torture_context *tctx,
struct winreg_QueryValue *r)
{
torture_assert_str_equal(tctx, r->in.value_name.name, "HOMEPATH", "name");
torture_assert_str_equal(tctx, r->in.value_name->name, "HOMEPATH", "name");
torture_assert_int_equal(tctx, *r->in.type, 0, "type");
torture_assert_int_equal(tctx, *r->in.size, 4095, "size");
torture_assert_int_equal(tctx, *r->in.length, 0, "length");

View File

@ -1539,7 +1539,8 @@ static bool test_QueryValue(struct dcerpc_pipe *p,
ZERO_STRUCT(r);
r.in.handle = handle;
r.in.data = NULL;
r.in.value_name.name = valuename;
r.in.value_name = talloc_zero(tctx, struct winreg_String);
r.in.value_name->name = valuename;
r.in.type = &zero_type;
r.in.size = &offered;
r.in.length = &zero;