mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
33 lines
1.3 KiB
C
33 lines
1.3 KiB
C
#ifndef __LIB_COM_PROTO_H__
|
|
#define __LIB_COM_PROTO_H__
|
|
|
|
#undef _PRINTF_ATTRIBUTE
|
|
#define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
|
|
/* This file was automatically generated by mkproto.pl. DO NOT EDIT */
|
|
|
|
/* this file contains prototypes for functions that are private
|
|
* to this subsystem or library. These functions should not be
|
|
* used outside this particular subsystem! */
|
|
|
|
|
|
/* The following definitions come from lib/com/tables.c */
|
|
|
|
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);
|
|
|
|
/* The following definitions come from lib/com/rot.c */
|
|
|
|
struct dcom_interface_p *dcom_get_local_iface_p(struct GUID *ipid);
|
|
|
|
/* The following definitions come from lib/com/main.c */
|
|
|
|
WERROR com_init_ctx(struct com_context **ctx, struct event_context *event_ctx);
|
|
WERROR com_create_object(struct com_context *ctx, struct GUID *clsid, int num_ifaces, struct GUID *iid, struct IUnknown **ip, WERROR *results);
|
|
WERROR com_get_class_object(struct com_context *ctx, struct GUID *clsid, struct GUID *iid, struct IUnknown **ip);
|
|
NTSTATUS com_init(void);
|
|
#undef _PRINTF_ATTRIBUTE
|
|
#define _PRINTF_ATTRIBUTE(a1, a2)
|
|
|
|
#endif /* __LIB_COM_PROTO_H__ */
|
|
|