From 5062d4c16a67f0b41ea18db39af755cdcca1d57b Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 16 Sep 2008 07:22:53 +0200 Subject: Fix more WMI compilation issues. --- source4/lib/com/dcom/dcom.h | 10 ++++++++++ source4/lib/com/dcom/main.c | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) (limited to 'source4/lib/com/dcom') diff --git a/source4/lib/com/dcom/dcom.h b/source4/lib/com/dcom/dcom.h index 0d8c145d7e..56d6eac93c 100644 --- a/source4/lib/com/dcom/dcom.h +++ b/source4/lib/com/dcom/dcom.h @@ -72,4 +72,14 @@ struct composite_context *dcom_release_send(struct IUnknown *d, TALLOC_CTX *mem_ marshal_fn dcom_marshal_by_clsid(struct GUID *clsid); unmarshal_fn dcom_unmarshal_by_clsid(struct GUID *clsid); +struct dcom_proxy_async_call_state { + struct IUnknown *d; + const struct ndr_interface_table *table; + uint32_t opnum; + void (*continuation)(struct rpc_request *); + TALLOC_CTX *mem_ctx; + void *r; +}; + + #endif /* _DCOM_H */ diff --git a/source4/lib/com/dcom/main.c b/source4/lib/com/dcom/main.c index 2770897ca3..3d2c13587d 100644 --- a/source4/lib/com/dcom/main.c +++ b/source4/lib/com/dcom/main.c @@ -576,7 +576,7 @@ enum ndr_err_code dcom_IUnknown_from_OBJREF(struct com_context *ctx, struct IUnk /* FIXME: Do the custom unmarshaling call */ *_p = p; - return NT_STATUS_NOT_SUPPORTED; + return NDR_ERR_BAD_SWITCH; case OBJREF_CUSTOM: p = talloc_zero(ctx, struct IUnknown); -- cgit