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.

58 lines
949 B

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. precomp.h
  5. Abstract:
  6. Precompiled header for appmon.dll.
  7. Author:
  8. HuiS June 2001
  9. Environment:
  10. User Level: Win32
  11. Revision History:
  12. --*/
  13. #include <nt.h>
  14. #include <ntrtl.h>
  15. #include <nturtl.h>
  16. #include <stddef.h>
  17. #include <stdio.h>
  18. #include <stdlib.h>
  19. #include <string.h>
  20. #include <rpc.h>
  21. #include <windows.h>
  22. #include <tchar.h>
  23. #include <userenv.h>
  24. #include <esent.h>
  25. #include "wzcsapi.h"
  26. #include "database.h"
  27. #include "mrswlock.h"
  28. #include "externs.h"
  29. #include "tracing.h"
  30. #ifdef BAIL_ON_WIN32_ERROR
  31. #undef BAIL_ON_WIN32_ERROR
  32. #endif
  33. #define BAIL_ON_WIN32_ERROR(dwError) \
  34. if (dwError) { \
  35. goto error; \
  36. }
  37. #define BAIL_ON_LOCK_ERROR(dwError) \
  38. if (dwError) { \
  39. goto lock; \
  40. }