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.

84 lines
3.9 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 ISPSEL.CPP
  15. BOOL CALLBACK ISPSelectInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  16. BOOL CALLBACK ISPSelectOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  17. BOOL CALLBACK ISPSelectNotifyProc(HWND hDlg, WPARAM wParam, LPARAM lParam);
  18. // Functions in ISPASEL.CPP
  19. BOOL CALLBACK ISPAutoSelectInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  20. BOOL CALLBACK ISPAutoSelectOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  21. BOOL CALLBACK ISPAutoSelectNotifyProc(HWND hDlg, WPARAM wParam, LPARAM lParam);
  22. // Functions in NOOFFER.CPP
  23. BOOL CALLBACK NoOfferInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  24. BOOL CALLBACK NoOfferOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  25. // Functions in USERINFO.CPP
  26. BOOL CALLBACK UserInfoInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  27. BOOL CALLBACK UserInfoOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  28. // Functions in BILLOPT.CPP
  29. BOOL CALLBACK BillingOptInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  30. BOOL CALLBACK BillingOptOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  31. // Functions in PAYMENT.CPP
  32. BOOL CALLBACK PaymentInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  33. BOOL CALLBACK PaymentOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  34. BOOL CALLBACK PaymentCmdProc(HWND hDlg, WPARAM wParam, LPARAM lParam);
  35. // Functions in ISPDIAL.CPP
  36. BOOL CALLBACK ISPDialInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  37. BOOL CALLBACK ISPDialPostInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  38. BOOL CALLBACK ISPDialOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  39. BOOL CALLBACK ISPDialCancelProc(HWND hDlg);
  40. // Functions in ISPPAGE.CPP
  41. BOOL CALLBACK ISPPageInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  42. BOOL CALLBACK ISPPageOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  43. BOOL CALLBACK ISPCmdProc(HWND hDlg, WPARAM wParam, LPARAM lParam);
  44. // Functions in OLS.CPP
  45. BOOL CALLBACK OLSInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  46. BOOL CALLBACK OLSOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  47. // Functions in DIALERR.CPP
  48. BOOL CALLBACK DialErrorInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  49. BOOL CALLBACK DialErrorOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  50. BOOL CALLBACK DialErrorCmdProc(HWND hDlg, WPARAM wParam, LPARAM lParam);
  51. // Functions in SERVERR.CPP
  52. BOOL CALLBACK ServErrorInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  53. BOOL CALLBACK ServErrorOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  54. BOOL CALLBACK ServErrorCmdProc(HWND hDlg, WPARAM wParam, LPARAM lParam);
  55. // Functions in ACFGNOFF.CPP
  56. BOOL CALLBACK ACfgNoofferInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  57. BOOL CALLBACK ACfgNoofferOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  58. // Functions in ISDNNOFF.CPP
  59. BOOL CALLBACK ISDNNoofferInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  60. BOOL CALLBACK ISDNNoofferOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  61. // Functions in NOOFFER.CPP
  62. BOOL CALLBACK OEMOfferInitProc(HWND hDlg,BOOL fFirstInit, UINT *puNextPage);
  63. BOOL CALLBACK OEMOfferOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  64. BOOL CALLBACK OEMOfferCmdProc(HWND hDlg, WPARAM wParam, LPARAM lParam);
  65. #endif // _PAGEFCNS_H_