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.

40 lines
603 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. msxs64.c
  5. Abstract:
  6. This module implements stub functions for shell32 interfaces.
  7. Author:
  8. David N. Cutler (davec) 11-Jun-2001
  9. Environment:
  10. Kernel mode only.
  11. Revision History:
  12. --*/
  13. #include "windows.h"
  14. #define STUBFUNC(x) \
  15. int \
  16. x( \
  17. void \
  18. ) \
  19. { \
  20. return 0; \
  21. }
  22. STUBFUNC(DllCanUnloadNow)
  23. STUBFUNC(DllGetClassObject)
  24. STUBFUNC(DllMain)
  25. STUBFUNC(DllRegisterServer)
  26. STUBFUNC(DllUnregisterServer)