summaryrefslogtreecommitdiffstats
path: root/private/nw/convert/nwconv/nwlog.h
diff options
context:
space:
mode:
Diffstat (limited to 'private/nw/convert/nwconv/nwlog.h')
-rw-r--r--private/nw/convert/nwconv/nwlog.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/private/nw/convert/nwconv/nwlog.h b/private/nw/convert/nwconv/nwlog.h
new file mode 100644
index 000000000..ceb44e407
--- /dev/null
+++ b/private/nw/convert/nwconv/nwlog.h
@@ -0,0 +1,39 @@
+/*+-------------------------------------------------------------------------+
+ | Copyright 1993-1994 (C) Microsoft Corporation - All rights reserved. |
+ +-------------------------------------------------------------------------+*/
+
+#ifndef _NWLOG_
+#define _NWLOG_
+
+#ifdef __cplusplus
+extern "C"{
+#endif
+
+void LogInit();
+void LogWriteLog(int Level, LPTSTR szFormat, ...);
+void LogWriteErr(LPTSTR szFormat, ...);
+void LogWriteSummary(int Level, LPTSTR szFormat, ...);
+void GetTime(TCHAR *str);
+void ErrorResetAll();
+void ErrorContextSet(LPTSTR szFormat, ...);
+void ErrorCategorySet(LPTSTR szFormat, ...);
+void ErrorItemSet(LPTSTR szFormat, ...);
+void ErrorReset();
+void ErrorSet(LPTSTR szFormat, ...);
+BOOL ErrorOccured();
+void ErrorBox(LPTSTR szFormat, ...);
+int ErrorBoxRetry(LPTSTR szFormat, ...);
+
+void LogOptionsInit();
+void LogOptionsSave( HANDLE hFile );
+void LogOptionsLoad( HANDLE hFile );
+BOOL PopupOnError();
+BOOL VerboseFileLogging();
+BOOL VerboseUserLogging();
+void DoLoggingDlg(HWND hDlg);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif