summaryrefslogtreecommitdiffstats
path: root/private/nw/convert/nwconv/utils.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--private/nw/convert/nwconv/utils.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/private/nw/convert/nwconv/utils.h b/private/nw/convert/nwconv/utils.h
new file mode 100644
index 000000000..bc2944862
--- /dev/null
+++ b/private/nw/convert/nwconv/utils.h
@@ -0,0 +1,33 @@
+/*+-------------------------------------------------------------------------+
+ | Copyright 1993-1994 (C) Microsoft Corporation - All rights reserved. |
+ +-------------------------------------------------------------------------+*/
+
+#ifndef _UTILS_
+#define _UTILS_
+
+#ifdef __cplusplus
+extern "C"{
+#endif
+
+#define MAX_DRIVE 30
+
+LPTSTR Lids(WORD idsStr);
+void StringTableDestroy();
+void CursorHourGlass();
+void CursorNormal();
+BOOL BitTest(int Bit, BYTE *Bits);
+BOOL CenterWindow( HWND hwndChild, HWND hwndParent );
+TCHAR *lstrchr(LPTSTR String, TCHAR c);
+BOOL IsPath(LPTSTR Path);
+LPTSTR lToStr(ULONG Number);
+LPTSTR TimeToStr(ULONG TotTime);
+void EscapeFormattingChars(LPTSTR String, ULONG BufferLength) ;
+
+void lsplitpath(const TCHAR *path, TCHAR *drive, TCHAR *dir, TCHAR *fname, TCHAR *ext);
+void lmakepath(TCHAR *path, const TCHAR *drive, const TCHAR *dir, const TCHAR *fname, const TCHAR *ext);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif