svn commit: samba r18235 - in branches/SAMBA_3_0/source/include: .

jerry at samba.org jerry at samba.org
Thu Sep 7 21:08:43 GMT 2006


Author: jerry
Date: 2006-09-07 21:08:42 +0000 (Thu, 07 Sep 2006)
New Revision: 18235

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=18235

Log:
stub header to get past compile issues with pidl ndr output
Modified:
   branches/SAMBA_3_0/source/include/dcerpc.h


Changeset:
Modified: branches/SAMBA_3_0/source/include/dcerpc.h
===================================================================
--- branches/SAMBA_3_0/source/include/dcerpc.h	2006-09-07 21:08:29 UTC (rev 18234)
+++ branches/SAMBA_3_0/source/include/dcerpc.h	2006-09-07 21:08:42 UTC (rev 18235)
@@ -0,0 +1,40 @@
+/* unused.  Stub to make the pidl generated NDR parsers compile */
+
+/*
+  this is used to find pointers to calls
+*/
+struct dcerpc_interface_call {
+        const char *name;
+        size_t struct_size;
+        ndr_push_flags_fn_t ndr_push;
+        ndr_pull_flags_fn_t ndr_pull;
+        ndr_print_function_t ndr_print;
+        BOOL async;
+};
+
+struct dcerpc_endpoint_list {
+        uint32_t count;
+        const char * const *names;
+};
+
+struct dcerpc_authservice_list {
+        uint32_t count;
+        const char * const *names;
+};
+
+struct dcerpc_interface_table {
+        const char *name;
+        struct dcerpc_syntax_id syntax_id;
+        const char *helpstring;
+        uint32_t num_calls;
+        const struct dcerpc_interface_call *calls;
+        const struct dcerpc_endpoint_list *endpoints;
+        const struct dcerpc_authservice_list *authservices;
+};
+
+struct dcerpc_interface_list {
+        struct dcerpc_interface_list *prev, *next;
+        const struct dcerpc_interface_table *table;
+};
+
+



More information about the samba-cvs mailing list