Source code of Windows XP (NT5)
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.

53 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1994 Microsoft Corporation
  3. Module Name :
  4. infoimp.h
  5. Abstract:
  6. This file allows us to include standard system headers files
  7. in the .idl file.
  8. The main .idl file imports a file called "imports.idl". This
  9. allows the .idl file to use the types defined in these headers.
  10. It also causes the following lines to be added to the MIDL generated
  11. files:
  12. # include "infoimp.h"
  13. Thus the routines and types defined here are available for RPC
  14. stub routines as well.
  15. Author:
  16. Murali R. Krishnan ( MuraliK ) 10-Nov-1994
  17. Project:
  18. Information Services Generic Imports file
  19. Revision History:
  20. --*/
  21. # ifndef _INFO_IMPORTS_H_
  22. # define _INFO_IMPORTS_H_
  23. # include <windef.h>
  24. # include <lmcons.h>
  25. #ifdef MIDL_PASS
  26. #define LPWSTR [string] wchar_t *
  27. #define LPSTR [string] char*
  28. #define BOOL DWORD
  29. #endif // MIDL_PASS
  30. #include "inetcom.h"
  31. #include "inetinfo.h"
  32. #include "apiutil.h" // defines MIDL_user_allocate() & MIDL_user_free()
  33. #endif // _INFO_IMPORTS_H_