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.
61 lines
1.4 KiB
61 lines
1.4 KiB
/*++
|
|
|
|
Copyright (c) 1994 Microsoft Corporation
|
|
|
|
Module Name :
|
|
|
|
infoimp.h
|
|
|
|
Abstract:
|
|
This file allows us to include standard system headers files
|
|
in the .idl file.
|
|
The main .idl file imports a file called "imports.idl". This
|
|
allows the .idl file to use the types defined in these headers.
|
|
It also causes the following lines to be added to the MIDL generated
|
|
files:
|
|
# include "infoimp.h"
|
|
|
|
Thus the routines and types defined here are available for RPC
|
|
stub routines as well.
|
|
|
|
Author:
|
|
|
|
Murali R. Krishnan ( MuraliK ) 10-Nov-1994
|
|
|
|
Project:
|
|
|
|
Information Services Generic Imports file
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
# ifndef _INFO_IMPORTS_H_
|
|
# define _INFO_IMPORTS_H_
|
|
|
|
/************************************************************
|
|
* Include Headers
|
|
************************************************************/
|
|
|
|
# include <windef.h>
|
|
# include <lmcons.h>
|
|
|
|
/************************************************************
|
|
* Type Definitions
|
|
************************************************************/
|
|
|
|
# ifdef MIDL_PASS
|
|
|
|
# define LPWSTR [ string] wchar_t *
|
|
|
|
# define BOOL DWORD
|
|
|
|
# endif // MIDL_PASS
|
|
|
|
|
|
# include "inetinfo.h"
|
|
# include "apiutil.h" // defines MIDL_user_allocate() & MIDL_user_free()
|
|
|
|
# endif // _INFO_IMPORTS_H_
|
|
|
|
/************************ End of File ***********************/
|