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.

136 lines
1.7 KiB

  1. #include "shellpch.h"
  2. #pragma hdrstop
  3. #define _COMDLG32_
  4. #include <commdlg.h>
  5. static
  6. DWORD
  7. APIENTRY
  8. CommDlgExtendedError(VOID)
  9. {
  10. return 0;
  11. }
  12. static
  13. SHORT
  14. APIENTRY
  15. GetFileTitleW (
  16. LPCWSTR lpszFileW,
  17. LPWSTR lpszTitleW,
  18. WORD cbBuf
  19. )
  20. {
  21. return FALSE;
  22. }
  23. static
  24. BOOL
  25. APIENTRY
  26. GetOpenFileNameW (
  27. LPOPENFILENAMEW pofn
  28. )
  29. {
  30. return FALSE;
  31. }
  32. static
  33. BOOL
  34. APIENTRY
  35. GetOpenFileNameA (
  36. LPOPENFILENAMEA pofn
  37. )
  38. {
  39. return FALSE;
  40. }
  41. static
  42. BOOL
  43. WINAPI
  44. GetSaveFileNameW (
  45. LPOPENFILENAMEW pofn
  46. )
  47. {
  48. return FALSE;
  49. }
  50. static
  51. BOOL
  52. WINAPI
  53. GetSaveFileNameA (
  54. LPOPENFILENAMEA pofn
  55. )
  56. {
  57. return FALSE;
  58. }
  59. static
  60. BOOL
  61. APIENTRY
  62. ChooseColorW(
  63. LPCHOOSECOLORW pccw
  64. )
  65. {
  66. return FALSE;
  67. }
  68. static
  69. BOOL
  70. APIENTRY
  71. PageSetupDlgW(
  72. LPPAGESETUPDLGW pPSDA
  73. )
  74. {
  75. return FALSE;
  76. }
  77. static
  78. BOOL
  79. APIENTRY
  80. PageSetupDlgA(
  81. LPPAGESETUPDLGA pPSDA
  82. )
  83. {
  84. return FALSE;
  85. }
  86. static
  87. BOOL
  88. APIENTRY
  89. PrintDlgA(
  90. LPPRINTDLGA pPDA
  91. )
  92. {
  93. return FALSE;
  94. }
  95. static
  96. BOOL
  97. APIENTRY
  98. PrintDlgW(
  99. LPPRINTDLGW pPDA
  100. )
  101. {
  102. return FALSE;
  103. }
  104. //
  105. // !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
  106. //
  107. DEFINE_PROCNAME_ENTRIES(comdlg32)
  108. {
  109. DLPENTRY(ChooseColorW)
  110. DLPENTRY(CommDlgExtendedError)
  111. DLPENTRY(GetFileTitleW)
  112. DLPENTRY(GetOpenFileNameA)
  113. DLPENTRY(GetOpenFileNameW)
  114. DLPENTRY(GetSaveFileNameA)
  115. DLPENTRY(GetSaveFileNameW)
  116. DLPENTRY(PageSetupDlgA)
  117. DLPENTRY(PageSetupDlgW)
  118. DLPENTRY(PrintDlgA)
  119. DLPENTRY(PrintDlgW)
  120. };
  121. DEFINE_PROCNAME_MAP(comdlg32)