summaryrefslogtreecommitdiffstats
path: root/private/net/svcdlls/msgsvc/imports.idl
blob: f8ce9137ff9a72770c94484c23856a9301562720 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*++

Copyright (c) 1991  Microsoft Corporation

Module Name:

    imports.idl

Abstract:

    This file is useful for creating RPC interfaces that require the use
    of windef types.  The .idl file for the RPC product should contain a
    line in the interface body that imports this file.  For example:

    import "imports.h";

    Doing this causes the MIDL generated header file to contain the
    following line:

    #include "imports.h"

    If this technique is not used, and instead the .idl file for the RPC
    product simply contains #include <importsf.h>, then the contents of
    imports.h will be expanded in the MIDL generated header file.  This
    can lead to duplicate definition problems later when the RPC client
    or RPC server code needs to include both the MIDL generated header file
    and a file that is included in imports.h.

Author:

    Dan Lafferty (danl)     20-Mar-1991

Environment:

    User Mode - Win32 - for use with the MIDL compiler


Revision History:

    03-Apr-1991     danl
        created

--*/

[
    uuid(12345678-1234-ABCD-EF00-9948756789AB),
#ifdef __midl
	ms_union,
#endif // __midl
    version(1.0)
]
interface imports

{
#define MIDL_PASS
#include "imports.h"

//
// All .idl files need to contain at least one function prototype
//

DWORD
Dummy(
    [in]    DWORD   DummyParm);


}