diff options
author | Adam <you@example.com> | 2020-05-17 05:51:50 +0200 |
---|---|---|
committer | Adam <you@example.com> | 2020-05-17 05:51:50 +0200 |
commit | e611b132f9b8abe35b362e5870b74bce94a1e58e (patch) | |
tree | a5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/nw/convert/nwconv/statbox.h | |
download | NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2 NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip |
Diffstat (limited to '')
-rw-r--r-- | private/nw/convert/nwconv/statbox.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/private/nw/convert/nwconv/statbox.h b/private/nw/convert/nwconv/statbox.h new file mode 100644 index 000000000..070f67ce6 --- /dev/null +++ b/private/nw/convert/nwconv/statbox.h @@ -0,0 +1,46 @@ +/*+-------------------------------------------------------------------------+ + | Copyright 1993-1994 (C) Microsoft Corporation - All rights reserved. | + +-------------------------------------------------------------------------+*/ + +#ifndef _HSTATBOX_ +#define _HSTATBOX_ + +#ifdef __cplusplus +extern "C"{ +#endif + +void Status_CurConv(UINT Num); +void Status_TotConv(UINT Num); +void Status_SrcServ(LPTSTR Server); +void Status_DestServ(LPTSTR Server); +void Status_ConvTxt(LPTSTR Text); +void Status_CurNum(UINT Num); +void Status_CurTot(UINT Num); +void Status_ItemLabel(LPTSTR Text, ...); +void Status_Item(LPTSTR Text); +void Status_TotComplete(UINT Num); +void Status_TotGroups(UINT Num); +void Status_TotUsers(UINT Num); +void Status_TotFiles(UINT Num); +void Status_TotErrors(UINT Num); +void Status_BytesTxt(LPTSTR Text); +void Status_Bytes(LPTSTR Text); +void Status_TotBytes(LPTSTR Text); +void Status_BytesSep(LPTSTR Text); + +void DoStatusDlg(HWND hDlg); +void StatusDlgKill(); + +void Panel_Line(int Line, LPTSTR szFormat, ...); +void PanelDlg_Do(HWND hDlg, LPTSTR Title); +BOOL Panel_Cancel(); +void PanelDlgKill(); + +ULONG UserNameErrorDlg_Do(LPTSTR Title, LPTSTR Problem, USER_BUFFER *User); +ULONG GroupNameErrorDlg_Do(LPTSTR Title, LPTSTR Problem, GROUP_BUFFER *Group); + +#ifdef __cplusplus +} +#endif + +#endif |