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.

50 lines
819 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. msdbi60l.c
  5. Abstract:
  6. This module implements stub functions for shell32 interfaces.
  7. Author:
  8. David N. Cutler (davec) 1-Mar-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(PDBClose)
  23. STUBFUNC(PDBCopyTo)
  24. STUBFUNC(PDBOpen)
  25. STUBFUNC(TypesClose)
  26. STUBFUNC(TypesQueryTiMacEx)
  27. STUBFUNC(TypesQueryTiMinEx)
  28. STUBFUNC(PDBOpenTpi)
  29. STUBFUNC(DBIQueryTypeServer)
  30. STUBFUNC(ModQuerySymbols)
  31. STUBFUNC(ModQueryLines)
  32. STUBFUNC(ModClose)
  33. STUBFUNC(PDBOpenDBI)
  34. STUBFUNC(PDBOpenValidate)
  35. STUBFUNC(DBIQueryNextMod)
  36. STUBFUNC(DBIClose)