From c212a65b65ba0100ceb9c4fa48c1f44dc0c804f5 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 16 Sep 2008 02:27:33 +0200 Subject: More changes getting WMI code to compile, import manual marshalling. --- source4/lib/com/com.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'source4/lib/com/com.h') diff --git a/source4/lib/com/com.h b/source4/lib/com/com.h index f88c914a04..2074bd11ca 100644 --- a/source4/lib/com/com.h +++ b/source4/lib/com/com.h @@ -25,6 +25,18 @@ struct com_context; struct event_context; +struct com_context +{ + struct dcom_client_context *dcom; + struct event_context *event_ctx; + struct com_extension { + uint32_t id; + void *data; + struct com_extension *prev, *next; + } *extensions; + struct loadparm_context *lp_ctx; +}; + struct IUnknown *com_class_by_clsid(struct com_context *ctx, const struct GUID *clsid); NTSTATUS com_register_running_class(struct GUID *clsid, const char *progid, struct IUnknown *p); -- cgit