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.

26 lines
704 B

  1. /*
  2. File advantab.h
  3. Definitions needed to display the dialup server ui networking tab.
  4. Paul Mayfield, 10/10/97
  5. */
  6. #ifndef __advantab_h
  7. #define __advantab_h
  8. #include <windows.h>
  9. #include <prsht.h>
  10. // Fills a LPPROPSHEETPAGE structure with the information
  11. // needed to display the advanced tab. dwUserData is ignored.
  12. DWORD NetTabGetPropertyPage(LPPROPSHEETPAGE lpPage, LPARAM lpUserData);
  13. // This dialog procedure responds to messages send to the
  14. // advanced tab.
  15. INT_PTR CALLBACK NetTabDialogProc(HWND hwndDlg,
  16. UINT uMsg,
  17. WPARAM wParam,
  18. LPARAM lParam);
  19. #endif