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.

57 lines
799 B

  1. /*++
  2. Copyright (c) 1994-1997 Microsoft Corporation
  3. Module Name:
  4. tshrcom.hxx
  5. Abstract:
  6. Includes all include files required for common tshare functionalities.
  7. Author:
  8. Madan Appiah (madana) 25-Aug-1997
  9. Environment:
  10. User Mode - Win32
  11. Revision History:
  12. --*/
  13. #ifndef _TSHRCOM_HXX_
  14. #define _TSHRCOM_HXX_
  15. extern "C" {
  16. #include <nt.h>
  17. #include <ntrtl.h>
  18. #include <nturtl.h>
  19. } // extern "C"
  20. #include <windows.h>
  21. #include <stdarg.h>
  22. #include <stdlib.h>
  23. #include <stdio.h>
  24. #include <time.h>
  25. //
  26. // on debug build define all inline functions as regular functions.
  27. //
  28. #if DBG
  29. #define INLINE
  30. #else
  31. #define INLINE inline
  32. #endif
  33. #define EXTERN extern
  34. #include <tshrutil.h>
  35. #include <tsreg.h>
  36. #endif // _TSHRCOM_HXX_