Source code of Windows XP (NT5)
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.

33 lines
436 B

  1. #include <ntddk.h>
  2. #include "active.h"
  3. #include "newstuff.h"
  4. #if !NEWSTUFF_ACTIVE
  5. //
  6. // Dummy implementation if the module is inactive
  7. //
  8. VOID NewStuff (
  9. PVOID NotUsed
  10. )
  11. {
  12. DbgPrint ("Buggy: newstuff module is disabled \n");
  13. }
  14. #else
  15. //
  16. // Real implementation if the module is active
  17. //
  18. VOID NewStuff (
  19. PVOID NotUsed
  20. )
  21. {
  22. DbgPrint ("Buggy: newstuff module is enabled \n");
  23. }
  24. #endif // #if !NEWSTUFF_ACTIVE