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
919 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. test.h
  5. Abstract:
  6. Header file for test routines
  7. Author:
  8. Billy J. Fuller (billyf) 19-Sep-1997 Created
  9. Environment:
  10. User Mode Service
  11. Revision History:
  12. --*/
  13. #ifndef _TEST_INCLUDED_
  14. #define _TEST_INCLUDED_
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. //
  19. // Test morphing during co retire
  20. //
  21. #if DBG
  22. #define TEST_DBSRENAMEFID_TOP(_Coe) \
  23. TestDbsRenameFidTop(_Coe)
  24. #define TEST_DBSRENAMEFID_BOTTOM(_Coe, _Ret) \
  25. TestDbsRenameFidBottom(_Coe, _Ret)
  26. VOID
  27. TestDbsRenameFidTop(
  28. IN PCHANGE_ORDER_ENTRY Coe
  29. );
  30. VOID
  31. TestDbsRenameFidBottom(
  32. IN PCHANGE_ORDER_ENTRY Coe,
  33. IN ULONG Ret
  34. );
  35. #else DBG
  36. #define TEST_DBSRENAMEFID_TOP(_Coe)
  37. #define TEST_DBSRENAMEFID_BOTTOM(_Coe, _Ret)
  38. #endif DBG
  39. #ifdef __cplusplus
  40. }
  41. #endif
  42. #endif