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.

36 lines
1.5 KiB

  1. /*
  2. File wizard.c
  3. Declarations for the incoming connections wizard.
  4. Paul Mayfield, 10/30/97
  5. */
  6. #ifndef __rassrvui_wizard_h
  7. #define __rassrvui_wizard_h
  8. // Fills in the property sheet structure with the information required to display
  9. // the device tab in the incoming connections wizard.
  10. DWORD DeviceWizGetPropertyPage(LPPROPSHEETPAGE ppage, LPARAM lpUserData);
  11. // Fills in the property sheet structure with the information required to display
  12. // the virtual networking tab in the incoming connections wizard.
  13. DWORD VpnWizGetPropertyPage(LPPROPSHEETPAGE ppage, LPARAM lpUserData);
  14. // Function fills in the given LPPROPSHEETPAGE structure with the information needed
  15. // to run the user tab in the incoming connections wizard.
  16. DWORD UserWizGetPropertyPage(LPPROPSHEETPAGE lpPage, LPARAM lpUserData);
  17. // Fills a LPPROPSHEETPAGE structure with the information
  18. // needed to display the protocol tab in the incoming connections wizard.
  19. DWORD ProtWizGetPropertyPage(LPPROPSHEETPAGE lpPage, LPARAM lpUserData);
  20. // Function fills in the given LPPROPSHEETPAGE structure with the information needed
  21. // to run the dcc device tab in the incoming connections wizard.
  22. DWORD DccdevWizGetPropertyPage (LPPROPSHEETPAGE lpPage, LPARAM lpUserData);
  23. // Function fills in the given LPPROPSHEETPAGE structure with the information needed
  24. // to run the dummy wizard page that switches to mmc.
  25. DWORD SwitchMmcWizGetProptertyPage (LPPROPSHEETPAGE lpPage, LPARAM lpUserData);
  26. #endif