Leaked source code of windows server 2003
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.

46 lines
983 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. imports.h
  5. Abstract:
  6. This file allows us to include standard system header files in the
  7. .idl file. The main .idl file imports a file called import.idl.
  8. This allows the .idl file to use the types defined in these header
  9. files. It also causes the following line to be added in the
  10. MIDL generated header file:
  11. #include "imports.h"
  12. Thus these types are available to the RPC stub routines as well.
  13. Author:
  14. Pradeep Bahl Apr-1992
  15. Revision History:
  16. --*/
  17. #include <windef.h>
  18. #ifdef MIDL_PASS
  19. #define va_list char //required so that I can include winsbase.h
  20. //in winsintf.h (to get def of SYSTEMTIME
  21. #ifdef UNICODE
  22. #define LPTSTR [string] wchar_t*
  23. #else
  24. #define LPTSTR [string] LPTSTR
  25. #endif
  26. #define LPSTR [string] LPSTR
  27. #define RPC_BOOL DWORD
  28. #else
  29. #include <stdarg.h> //for definition of va_list
  30. #endif
  31. #include <winsintf.h>