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.

46 lines
1.3 KiB

  1. /*+-------------------------------------------------------------------------+
  2. | Copyright 1993-1994 (C) Microsoft Corporation - All rights reserved. |
  3. +-------------------------------------------------------------------------+*/
  4. #ifndef _HSTATBOX_
  5. #define _HSTATBOX_
  6. #ifdef __cplusplus
  7. extern "C"{
  8. #endif
  9. void Status_CurConv(UINT Num);
  10. void Status_TotConv(UINT Num);
  11. void Status_SrcServ(LPTSTR Server);
  12. void Status_DestServ(LPTSTR Server);
  13. void Status_ConvTxt(LPTSTR Text);
  14. void Status_CurNum(UINT Num);
  15. void Status_CurTot(UINT Num);
  16. void Status_ItemLabel(LPTSTR Text, ...);
  17. void Status_Item(LPTSTR Text);
  18. void Status_TotComplete(UINT Num);
  19. void Status_TotGroups(UINT Num);
  20. void Status_TotUsers(UINT Num);
  21. void Status_TotFiles(UINT Num);
  22. void Status_TotErrors(UINT Num);
  23. void Status_BytesTxt(LPTSTR Text);
  24. void Status_Bytes(LPTSTR Text);
  25. void Status_TotBytes(LPTSTR Text);
  26. void Status_BytesSep(LPTSTR Text);
  27. void DoStatusDlg(HWND hDlg);
  28. void StatusDlgKill();
  29. void Panel_Line(int Line, LPTSTR szFormat, ...);
  30. void PanelDlg_Do(HWND hDlg, LPTSTR Title);
  31. BOOL Panel_Cancel();
  32. void PanelDlgKill();
  33. ULONG UserNameErrorDlg_Do(LPTSTR Title, LPTSTR Problem, USER_BUFFER *User);
  34. ULONG GroupNameErrorDlg_Do(LPTSTR Title, LPTSTR Problem, GROUP_BUFFER *Group);
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. #endif