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.

86 lines
4.0 KiB

  1. //*********************************************************************
  2. //* Microsoft Windows **
  3. //* Copyright(c) Microsoft Corp., 1994 **
  4. //*********************************************************************
  5. //
  6. // PAGEFCNS.H - Prototypes for wizard page handler functions
  7. //
  8. // HISTORY:
  9. //
  10. // 05/18/98 donaldm Created.
  11. //
  12. #ifndef _PAGEFCNS_H_
  13. #define _PAGEFCNS_H_
  14. // Functions in INTRO.CPP
  15. BOOL CALLBACK IntroInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  16. BOOL CALLBACK IntroPostInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  17. BOOL CALLBACK IntroOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  18. BOOL CALLBACK IntroCmdProc(HWND hDlg, WPARAM wParam, LPARAM lParam);
  19. // Functions in BRANDED.CPP
  20. BOOL CALLBACK BrandedIntroInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  21. BOOL CALLBACK BrandedIntroOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  22. BOOL CALLBACK BrandedIntroPostInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  23. // Functions in MANUAL.CPP
  24. BOOL CALLBACK ManualOptionsInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  25. BOOL CALLBACK ManualOptionsCmdProc(HWND hDlg, WPARAM wParam, LPARAM lParam);
  26. BOOL CALLBACK ManualOptionsOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  27. // Functions in AREACODE.CPP
  28. BOOL CALLBACK AreaCodeInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  29. BOOL CALLBACK AreaCodeOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  30. BOOL CALLBACK AreaCodeCmdProc(HWND hDlg, WPARAM wParam, LPARAM lParam);
  31. // Functions in REFDIAL.CPP
  32. BOOL CALLBACK RefServDialInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  33. BOOL CALLBACK RefServDialPostInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  34. BOOL CALLBACK RefServDialOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  35. BOOL CALLBACK RefServDialCancelProc(HWND hDlg);
  36. // Functions in END.CPP
  37. BOOL CALLBACK EndInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  38. BOOL CALLBACK EndOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  39. BOOL CALLBACK EndOlsInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  40. // Functions in DIALERR.CPP
  41. BOOL CALLBACK DialErrorInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  42. BOOL CALLBACK DialErrorOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  43. BOOL CALLBACK DialErrorCmdProc(HWND hDlg, WPARAM wParam, LPARAM lParam);
  44. // Functions in MULTINUM.CPP
  45. BOOL CALLBACK MultiNumberInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  46. BOOL CALLBACK MultiNumberOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  47. // Functions in SERVERR.CPP
  48. BOOL CALLBACK ServErrorInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  49. BOOL CALLBACK ServErrorOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  50. BOOL CALLBACK ServErrorCmdProc(HWND hDlg, WPARAM wParam, LPARAM lParam);
  51. // Functions in ISPERR.CPP
  52. BOOL CALLBACK ISPErrorInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  53. // Functions in SBSINTRO.CPP
  54. BOOL CALLBACK SbsInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  55. BOOL CALLBACK SbsIntroOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  56. #ifdef ICWDEBUG
  57. // Functions in ICWDEBUG.CPP
  58. BOOL CALLBACK DebugOfferInitProc (HWND hDlg, BOOL fFirstInit, UINT* puNextPage);
  59. BOOL CALLBACK DebugOfferOKProc (HWND hDlg, BOOL fForward, UINT* puNextPage, BOOL* pfKeepHistory);
  60. BOOL CALLBACK DebugOfferCmdProc (HWND hDlg, WPARAM wParam, LPARAM lParam);
  61. BOOL CALLBACK DebugOfferNotifyProc(HWND hDlg, WPARAM wParam, LPARAM lParam);
  62. // Functions in ICWDEBUG.CPP
  63. BOOL CALLBACK DebugSettingsInitProc (HWND hDlg, BOOL fFirstInit, UINT* puNextPage);
  64. BOOL CALLBACK DebugSettingsOKProc (HWND hDlg, BOOL fForward, UINT* puNextPage, BOOL* pfKeepHistory);
  65. BOOL CALLBACK DebugSettingsCmdProc (HWND hDlg, WPARAM wParam, LPARAM lParam);
  66. #endif //ICWDEBUG
  67. #endif // _PAGEFCNS_H_