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.

48 lines
792 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. Main.cpp
  5. Abstract:
  6. Notes:
  7. History:
  8. 02/27/2000 clupu Created
  9. --*/
  10. #include "precomp.h"
  11. #include "ShimHookMacro.h"
  12. DECLARE_SHIM(Win2kVersionLie64)
  13. VOID MULTISHIM_NOTIFY_FUNCTION()(DWORD fdwReason)
  14. {
  15. switch (fdwReason)
  16. {
  17. case DLL_PROCESS_ATTACH:
  18. DPF("AcGen64", eDbgLevelSpew, "General Purpose Shims 64 initialized.");
  19. break;
  20. case DLL_PROCESS_DETACH:
  21. DPF("AcGen64", eDbgLevelSpew, "General Purpose Shims 64 uninitialized.");
  22. break;
  23. default:
  24. break;
  25. }
  26. }
  27. MULTISHIM_BEGIN()
  28. MULTISHIM_ENTRY(Win2kVersionLie64)
  29. CALL_MULTISHIM_NOTIFY_FUNCTION()
  30. MULTISHIM_END()