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.

63 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. corpol.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(LibMain)
  23. STUBFUNC(SQLCloseEnumServers)
  24. STUBFUNC(SQLGetNextEnumeration)
  25. STUBFUNC(SQLInitEnumServers)
  26. STUBFUNC(SQLLinkedCatalogsA)
  27. STUBFUNC(SQLLinkedCatalogsW)
  28. STUBFUNC(SQLLinkedServers)
  29. STUBFUNC(bcp_batch)
  30. STUBFUNC(bcp_bind)
  31. STUBFUNC(bcp_colfmt)
  32. STUBFUNC(bcp_collen)
  33. STUBFUNC(bcp_colptr)
  34. STUBFUNC(bcp_columns)
  35. STUBFUNC(bcp_control)
  36. STUBFUNC(bcp_done)
  37. STUBFUNC(bcp_exec)
  38. STUBFUNC(bcp_getcolfmt)
  39. STUBFUNC(bcp_initA)
  40. STUBFUNC(bcp_initW)
  41. STUBFUNC(bcp_moretext)
  42. STUBFUNC(bcp_readfmtA)
  43. STUBFUNC(bcp_readfmtW)
  44. STUBFUNC(bcp_sendrow)
  45. STUBFUNC(bcp_setcolfmt)
  46. STUBFUNC(bcp_writefmtA)
  47. STUBFUNC(bcp_writefmtW)
  48. STUBFUNC(dbprtypeA)
  49. STUBFUNC(dbprtypeW)