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.

36 lines
590 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name :
  4. randint.h
  5. Abstract :
  6. Random failure internal include file
  7. Author :
  8. Sam Neely
  9. Revision History :
  10. --*/
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. static const long kDontFail = 0;
  15. extern long nFailRate;
  16. extern DWORD dwRandFailTlsIndex;
  17. extern LONG g_cCallStack;
  18. extern CHAR** g_ppchCallStack;
  19. extern LONG g_iCallStack;
  20. extern const DWORD g_dwMaxCallStack;
  21. extern HANDLE g_hRandFailFile;
  22. extern HANDLE g_hRandFailMutex;
  23. extern CHAR g_szRandFailFile[];
  24. #ifdef __cplusplus
  25. }
  26. #endif