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.

96 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. // 12/22/94 jeremys Created.
  11. // 96/03/23 markdu Removed GatewayAddr__Proc functions
  12. // 96/05/14 markdu NASH BUG 22681 Took out mail and news pages.
  13. //
  14. #ifndef _PAGEFCNS_H_
  15. #define _PAGEFCNS_H_
  16. // Functions in INTROUI.C
  17. BOOL CALLBACK HowToConnectInitProc(HWND hDlg,BOOL fFirstInit);
  18. BOOL CALLBACK HowToConnectOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage,
  19. BOOL * pfKeepHistory);
  20. BOOL CALLBACK ChooseModemInitProc(HWND hDlg,BOOL fFirstInit);
  21. BOOL CALLBACK ChooseModemCmdProc(HWND hDlg,WPARAM wParam,LPARAM lParam);
  22. BOOL CALLBACK ChooseModemOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage,
  23. BOOL * pfKeepHistory);
  24. // functions in ISPUPGUI.C
  25. BOOL CALLBACK ConnectionInitProc(HWND hDlg,BOOL fFirstInit);
  26. BOOL CALLBACK ConnectionOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage,
  27. BOOL * pfKeepHistory);
  28. BOOL CALLBACK ConnectionCmdProc(HWND hDlg,WPARAM wParam,LPARAM lParam);
  29. BOOL CALLBACK ModifyConnectionInitProc(HWND hDlg,BOOL fFirstInit);
  30. BOOL CALLBACK ModifyConnectionOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage,
  31. BOOL * pfKeepHistory);
  32. BOOL CALLBACK ConnectionNameInitProc(HWND hDlg,BOOL fFirstInit);
  33. BOOL CALLBACK ConnectionNameOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage,
  34. BOOL * pfKeepHistory);
  35. BOOL CALLBACK PhoneNumberInitProc(HWND hDlg,BOOL fFirstInit);
  36. BOOL CALLBACK PhoneNumberOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage,
  37. BOOL * pfKeepHistory);
  38. BOOL CALLBACK PhoneNumberCmdProc(HWND hDlg,WPARAM wParam,LPARAM lParam);
  39. BOOL CALLBACK NameAndPasswordInitProc(HWND hDlg,BOOL fFirstInit);
  40. BOOL CALLBACK NameAndPasswordOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage,
  41. BOOL * pfKeepHistory);
  42. BOOL CALLBACK AdvancedInitProc(HWND hDlg,BOOL fFirstInit);
  43. BOOL CALLBACK AdvancedOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage,
  44. BOOL * pfKeepHistory);
  45. BOOL CALLBACK ConnectionProtocolInitProc(HWND hDlg,BOOL fFirstInit);
  46. BOOL CALLBACK ConnectionProtocolOKProc(HWND hDlg);
  47. BOOL CALLBACK LoginScriptInitProc(HWND hDlg,BOOL fFirstInit);
  48. BOOL CALLBACK LoginScriptOKProc(HWND hDlg);
  49. BOOL CALLBACK LoginScriptCmdProc(HWND hDlg,UINT uCtrlID);
  50. // functions in TCPUI.C
  51. BOOL CALLBACK IPAddressInitProc(HWND hDlg,BOOL fFirstInit);
  52. BOOL CALLBACK IPAddressOKProc(HWND hDlg);
  53. BOOL CALLBACK IPAddressCmdProc(HWND hDlg,UINT uCtrlID);
  54. BOOL CALLBACK DNSAddressInitProc(HWND hDlg,BOOL fFirstInit);
  55. BOOL CALLBACK DNSAddressOKProc(HWND hDlg);
  56. BOOL CALLBACK DNSAddressCmdProc(HWND hDlg,UINT uCtrlID);
  57. // functions in MAILUI.C
  58. BOOL CALLBACK UseProxyInitProc(HWND hDlg,BOOL fFirstInit);
  59. BOOL CALLBACK UseProxyOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage,
  60. BOOL * pfKeepHistory);
  61. BOOL CALLBACK UseProxyCmdProc(HWND hDlg,WPARAM wParam,LPARAM lParam);
  62. BOOL CALLBACK ProxyServersInitProc(HWND hDlg,BOOL fFirstInit);
  63. BOOL CALLBACK ProxyServersOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage,
  64. BOOL * pfKeepHistory);
  65. BOOL CALLBACK ProxyServersCmdProc(HWND hDlg,WPARAM wParam,LPARAM lParam);
  66. BOOL CALLBACK SetupProxyInitProc(HWND hDlg,BOOL fFirstInit);
  67. BOOL CALLBACK SetupProxyOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage, BOOL * pfKeepHistory);
  68. BOOL CALLBACK SetupProxyCmdProc(HWND hDlg,WPARAM wParam,LPARAM lParam);
  69. BOOL CALLBACK ProxyExceptionsInitProc(HWND hDlg,BOOL fFirstInit);
  70. BOOL CALLBACK ProxyExceptionsOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage,
  71. BOOL * pfKeepHistory);
  72. // functions in ENDUI.C
  73. BOOL CALLBACK ConnectedOKInitProc(HWND hDlg,BOOL fFirstInit);
  74. BOOL CALLBACK ConnectedOKOKProc(HWND hDlg,BOOL fForward,UINT * puNextPage,
  75. BOOL * pfKeepHistory);
  76. #endif // _PAGEFCNS_H_