Source code of Windows XP (NT5)
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.

27 lines
764 B

  1. /*
  2. File usertab.h
  3. Defines structures/methods for operating on the local user database.
  4. Paul Mayfield, 9/29/97
  5. */
  6. #ifndef _usertab_h
  7. #define _usertab_h
  8. // ======================================
  9. // Structures
  10. // ======================================
  11. // Fills a LPPROPSHEETPAGE structure with the information
  12. // needed to display the user tab. dwUserData is ignored.
  13. DWORD UserTabGetPropertyPage(LPPROPSHEETPAGE lpPage, LPARAM lpUserData);
  14. // Function is the window procedure of the user tab in the incoming connections
  15. // property sheet and wizard.
  16. INT_PTR CALLBACK UserTabDialogProc(HWND hwndDlg,
  17. UINT uMsg,
  18. WPARAM wParam,
  19. LPARAM lParam);
  20. #endif