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

Cope with includes.h splitup in COM code.

This commit is contained in:
Jelmer Vernooij
2008-09-12 13:58:05 +02:00
parent 53c9df4da0
commit df06b36b46
2 changed files with 7 additions and 0 deletions

View File

@ -20,6 +20,11 @@
#ifndef __SAMBA_COM_H__
#define __SAMBA_COM_H__
#include "librpc/gen_ndr/misc.h"
struct com_context;
struct event_context;
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);

View File

@ -47,6 +47,8 @@ NTSTATUS dcom_OBJREF_from_IUnknown(struct OBJREF *o, struct IUnknown *p);
NTSTATUS dcom_IUnknown_from_OBJREF(struct com_context *ctx, struct IUnknown **_p, struct OBJREF *o);
uint64_t dcom_get_current_oxid(void);
#include "librpc/gen_ndr/com_dcom.h"
NTSTATUS dcom_register_proxy(struct IUnknown_vtable *proxy_vtable);
struct IUnknown_vtable *dcom_proxy_vtable_by_iid(struct GUID *iid);