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.

84 lines
889 B

  1. #include "shellpch.h"
  2. #pragma hdrstop
  3. static
  4. BOOL
  5. WINAPI
  6. ThemeWatchForStart (
  7. void
  8. )
  9. {
  10. return FALSE;
  11. }
  12. static
  13. DWORD
  14. WINAPI
  15. ThemeWaitForServiceReady (
  16. DWORD dwTimeout
  17. )
  18. {
  19. return WAIT_TIMEOUT;
  20. }
  21. static
  22. BOOL
  23. WINAPI
  24. ThemeUserLogoff (
  25. void
  26. )
  27. {
  28. return FALSE;
  29. }
  30. static
  31. BOOL
  32. WINAPI
  33. ThemeUserLogon (
  34. HANDLE hToken
  35. )
  36. {
  37. return FALSE;
  38. }
  39. static
  40. BOOL
  41. WINAPI
  42. ThemeUserStartShell (
  43. void
  44. )
  45. {
  46. return FALSE;
  47. }
  48. static
  49. BOOL
  50. WINAPI
  51. ThemeUserTSReconnect (
  52. void
  53. )
  54. {
  55. return FALSE;
  56. }
  57. //
  58. // !! WARNING !! The entries below must be in order by ORDINAL
  59. //
  60. DEFINE_ORDINAL_ENTRIES(shsvcs)
  61. {
  62. DLOENTRY(1,ThemeWatchForStart)
  63. DLOENTRY(2,ThemeWaitForServiceReady)
  64. DLOENTRY(3,ThemeUserLogoff)
  65. DLOENTRY(4,ThemeUserLogon)
  66. DLOENTRY(5,ThemeUserStartShell)
  67. DLOENTRY(6,ThemeUserTSReconnect)
  68. };
  69. DEFINE_ORDINAL_MAP(shsvcs)