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.

34 lines
1.1 KiB

  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. // For whistler bug 39081 458513 gangz
  9. // The maximum number of chars show on the edit box
  10. #define IC_USERFULLNAME 257 // Because in the user management, it could be
  11. // 256 characters long for the full name
  12. #define IC_USERNAME 22
  13. // ======================================
  14. // Structures
  15. // ======================================
  16. // Fills a LPPROPSHEETPAGE structure with the information
  17. // needed to display the user tab. dwUserData is ignored.
  18. DWORD UserTabGetPropertyPage(LPPROPSHEETPAGE lpPage, LPARAM lpUserData);
  19. // Function is the window procedure of the user tab in the incoming connections
  20. // property sheet and wizard.
  21. INT_PTR CALLBACK UserTabDialogProc(HWND hwndDlg,
  22. UINT uMsg,
  23. WPARAM wParam,
  24. LPARAM lParam);
  25. #endif