Print this page
1575 untangle libmlrpc ... (smbsrv)
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/uts/common/smbsrv/ndl/msgsvc.ndl
+++ new/usr/src/uts/common/smbsrv/ndl/msgsvc.ndl
1 1 /*
2 2 * CDDL HEADER START
3 3 *
4 4 * The contents of this file are subject to the terms of the
5 5 * Common Development and Distribution License (the "License").
6 6 * You may not use this file except in compliance with the License.
7 7 *
8 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 * or http://www.opensolaris.org/os/licensing.
10 10 * See the License for the specific language governing permissions
11 11 * and limitations under the License.
12 12 *
13 13 * When distributing Covered Code, include this CDDL HEADER in each
↓ open down ↓ |
13 lines elided |
↑ open up ↑ |
14 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 * If applicable, add the following below this CDDL HEADER, with the
16 16 * fields enclosed by brackets "[]" replaced with your own identifying
17 17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 18 *
19 19 * CDDL HEADER END
20 20 */
21 21 /*
22 22 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 23 * Use is subject to license terms.
24 + *
25 + * Copyright 2013 Nexenta Systems, Inc. All rights reserved.
24 26 */
25 27
26 28 #ifndef _MSGSVC_NDL_
27 29 #define _MSGSVC_NDL_
28 30
29 31 /*
30 32 * Message Service
31 33 */
32 34
33 -#include "ndrtypes.ndl"
35 +#include <libmlrpc/ndrtypes.ndl>
34 36
35 37 #define MSGSVCSEND_OPNUM_NetrSendMessage 0x00
36 38
37 39 struct msgsvc_uuid {
38 40 DWORD data1;
39 41 WORD data2;
40 42 WORD data3;
41 43 BYTE data4[8];
42 44 };
43 45 typedef struct msgsvc_uuid msgsvc_uuid_t;
44 46
45 47 OPERATION(MSGSVCSEND_OPNUM_NetrSendMessage)
46 48 struct msgsvcsend_NetrSendMessage {
47 49 IN msgsvc_uuid_t handle;
48 50 IN LPTSTR from;
49 51 IN LPTSTR to;
50 52 IN LPTSTR text;
51 53 OUT DWORD status;
52 54 };
53 55 typedef struct msgsvcsend_NetrSendMessage msgsvcsend_NetrSendMessage_t;
54 56
55 57
56 58 /*
57 59 ***********************************************************************
58 60 * MSGSVC interface definiton.
59 61 ***********************************************************************
60 62 */
61 63 INTERFACE(0)
62 64 union msgsvcsend_interface {
63 65 CASE(MSGSVCSEND_OPNUM_NetrSendMessage)
64 66 struct msgsvcsend_NetrSendMessage NetrSendMessage;
65 67 };
66 68 typedef union msgsvcsend_interface msgsvcsend_interface_t;
67 69 EXTERNTYPEINFO(msgsvcsend_interface)
68 70
69 71 #endif /* _MSGSVC_NDL_ */
↓ open down ↓ |
26 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX