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.

103 lines
1.6 KiB

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. Dialog.h
  5. Abstract:
  6. Contains constants, function prototypes, and
  7. structures used by the dialog boxes.
  8. Notes:
  9. ANSI only - must run on Win9x.
  10. History:
  11. 01/30/01 rparsons Created
  12. 01/10/02 rparsons Revised
  13. --*/
  14. INT_PTR
  15. CALLBACK
  16. RebootDialogProc(
  17. IN HWND hWnd,
  18. IN UINT uMsg,
  19. IN WPARAM wParam,
  20. IN LPARAM lParam
  21. );
  22. INT_PTR
  23. CALLBACK
  24. ViewReadmeDialogProc(
  25. IN HWND hWnd,
  26. IN UINT uMsg,
  27. IN WPARAM wParam,
  28. IN LPARAM lParam
  29. );
  30. INT_PTR
  31. CALLBACK
  32. CopyFilesDialogProc(
  33. IN HWND hWnd,
  34. IN UINT uMsg,
  35. IN WPARAM wParam,
  36. IN LPARAM lParam
  37. );
  38. INT_PTR
  39. CALLBACK
  40. ReadyToCopyDialogProc(
  41. IN HWND hWnd,
  42. IN UINT uMsg,
  43. IN WPARAM wParam,
  44. IN LPARAM lParam
  45. );
  46. INT_PTR
  47. CALLBACK
  48. CheckFreeDiskSpaceDialogProc(
  49. IN HWND hWnd,
  50. IN UINT uMsg,
  51. IN WPARAM wParam,
  52. IN LPARAM lParam
  53. );
  54. INT_PTR
  55. CALLBACK
  56. CheckComponentDialogProc(
  57. IN HWND hWnd,
  58. IN UINT uMsg,
  59. IN WPARAM wParam,
  60. IN LPARAM lParam
  61. );
  62. INT_PTR
  63. CALLBACK
  64. ExitSetupDialogProc(
  65. IN HWND hWnd,
  66. IN UINT uMsg,
  67. IN WPARAM wParam,
  68. IN LPARAM lParam
  69. );
  70. INT_PTR
  71. CALLBACK
  72. WelcomeDialogProc(
  73. IN HWND hWnd,
  74. IN UINT uMsg,
  75. IN WPARAM wParam,
  76. IN LPARAM lParam
  77. );
  78. INT_PTR
  79. CALLBACK
  80. ExtractionDialogProc(
  81. IN HWND hWnd,
  82. IN UINT uMsg,
  83. IN WPARAM wParam,
  84. IN LPARAM lParam
  85. );