summaryrefslogtreecommitdiff
path: root/source4/lib/com/com.h
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-09-16 02:27:33 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-09-16 02:27:33 +0200
commitc212a65b65ba0100ceb9c4fa48c1f44dc0c804f5 (patch)
treee0277c440075c1830b30d7ae98fe0238cdae6a24 /source4/lib/com/com.h
parent7e239a15b316deb83cbdcb79e392f6aefe289114 (diff)
downloadsamba-c212a65b65ba0100ceb9c4fa48c1f44dc0c804f5.tar.gz
samba-c212a65b65ba0100ceb9c4fa48c1f44dc0c804f5.tar.bz2
samba-c212a65b65ba0100ceb9c4fa48c1f44dc0c804f5.zip
More changes getting WMI code to compile, import manual marshalling.
Diffstat (limited to 'source4/lib/com/com.h')
-rw-r--r--source4/lib/com/com.h12
1 files changed, 12 insertions, 0 deletions
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);