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.

23 lines
647 B

  1. /*
  2. File gentab.h
  3. Definitions needed to display the dialup server ui general tab.
  4. Paul Mayfield, 10/10/97
  5. */
  6. #ifndef __gentab_h
  7. #define __gentab_h
  8. // Fills a LPPROPSHEETPAGE structure with the information
  9. // needed to display the general tab. dwUserData is ignored.
  10. DWORD GenTabGetPropertyPage(LPPROPSHEETPAGE lpPage, LPARAM lpUserData);
  11. // This dialog procedure responds to messages sent to the
  12. // general tab.
  13. INT_PTR CALLBACK GenTabDialogProc(HWND hwndDlg,
  14. UINT uMsg,
  15. WPARAM wParam,
  16. LPARAM lParam);
  17. #endif