mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
/*++
|
|
|
|
Copyright (c) 1991 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
samimp.idl
|
|
|
|
Abstract:
|
|
|
|
This file is necessary to create RPC interfaces that require the use
|
|
of ntos2 types. The .idl file for the RPC product should contain a
|
|
line in the interface body that imports this file. For example:
|
|
|
|
import "samimp.h";
|
|
|
|
Doing this causes the MIDL generated header file to contain the
|
|
following line:
|
|
|
|
#include "samimp.h"
|
|
|
|
If this technique is not used, and instead the .idl file for the RPC
|
|
product simply contains #include <samimp.h>, then the contents of
|
|
samimp.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 samimp.h.
|
|
|
|
Author:
|
|
Jim Kelly (JimK) May 23, 1991
|
|
|
|
Environment:
|
|
|
|
User Mode
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
[
|
|
uuid(12345678-1234-ABCD-EF00-0123476589AB), //FIX, FIX Need real uuid
|
|
#ifdef __midl
|
|
ms_union,
|
|
#endif // __midl
|
|
version(0.0),
|
|
endpoint("mscn_np:[\pipe\samimp]")
|
|
]
|
|
|
|
interface samimp
|
|
|
|
{
|
|
|
|
#define SAM_MIDL_PASS
|
|
#define MIDL_PASS
|
|
#include "samimp.h"
|
|
|
|
}
|