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.

54 lines
1.5 KiB

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 2001, Microsoft Corporation All rights reserved.
  4. //
  5. // Module Name:
  6. //
  7. // users.h
  8. //
  9. // Abstract:
  10. //
  11. // This file contains the users dialog of the euroconv.exe utility.
  12. //
  13. // Revision History:
  14. //
  15. // 2001-07-30 lguindon Created.
  16. //
  17. ///////////////////////////////////////////////////////////////////////////////
  18. #ifndef _USERS_H_
  19. #define _USERS_H_
  20. ///////////////////////////////////////////////////////////////////////////////
  21. //
  22. // Include Files.
  23. //
  24. ///////////////////////////////////////////////////////////////////////////////
  25. #include "euroconv.h"
  26. ///////////////////////////////////////////////////////////////////////////////
  27. //
  28. // Defines.
  29. //
  30. ///////////////////////////////////////////////////////////////////////////////
  31. ///////////////////////////////////////////////////////////////////////////////
  32. //
  33. // Functions Prototypes.
  34. //
  35. ///////////////////////////////////////////////////////////////////////////////
  36. INT_PTR CALLBACK UsersDialogProc(HWND hWndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
  37. BOOL UsersDialog(HWND hDlg);
  38. void ListUsersInfo(HWND hDlg);
  39. void ListUsersInfoFromRegistry(HWND hDlg);
  40. void ListUsersInfoFromFile(HWND hDlg);
  41. void AddToList(HWND hDlg, LPSTR user, LCID locale);
  42. void GetUserNameFromRegistry(LPSTR strKey, int cbKey, LPSTR name, int cbname);
  43. #endif //_USERS_H_