summaryrefslogtreecommitdiff
path: root/support/dktools/dk4const.h
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-10-12 03:04:00 +0000
committerNorbert Preining <norbert@preining.info>2020-10-12 03:04:00 +0000
commit0ce40abb18ec02ec6fd6bcc5f21612c88daa7578 (patch)
tree416289fe1448873fd8ca33051f50ad85bffa8aaa /support/dktools/dk4const.h
parentfdb18507cd80dc17f5a5256153d34668b4f4e61c (diff)
CTAN sync 202010120303
Diffstat (limited to 'support/dktools/dk4const.h')
-rw-r--r--support/dktools/dk4const.h69
1 files changed, 0 insertions, 69 deletions
diff --git a/support/dktools/dk4const.h b/support/dktools/dk4const.h
deleted file mode 100644
index f0980a92b8..0000000000
--- a/support/dktools/dk4const.h
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
-Copyright 2020, Dirk Krause. All rights reserved.
-SPDX-License-Identifier: BSD-3-Clause
-*/
-
-/** @file dk4const.h Numeric constants
-for log level and string table entry length.
-
-*/
-#ifndef DK4CONST_H_INCLUDED
-/** Protection against multiple inclusion.
-*/
-#define DK4CONST_H_INCLUDED 1
-
-
-
-#ifndef DK4CONF_H_INCLUDED
-#if DK4_BUILDING_DKTOOLS4
-#include "dk4conf.h"
-#else
-#include <dktools-4/dk4conf.h>
-#endif
-#endif
-
-
-
-/** Log levels, higher numeric values correspond to lower priorities.
-*/
-enum {
- /** This message priority never occurs. */
-DK4_LL_NONE = 0,
-
- /** Panic message. */
-DK4_LL_PANIC,
-
- /** Fatal error message. */
-DK4_LL_FATAL,
-
- /** Error message. */
-DK4_LL_ERROR,
-
- /** Warning message. */
-DK4_LL_WARNING,
-
- /** Informational message. */
-DK4_LL_INFO,
-
- /** Progress message. */
-DK4_LL_PROGRESS,
-
- /** Debug message. */
-DK4_LL_DEBUG,
-
- /** Message can be ignored. */
-DK4_LL_IGNORE
-};
-
-
-
-/** Maximum string table line width.
-*/
-enum {
- /** Maximum string table line width.
- */
- DK4_MAX_STRING_TABLE_LINE_LENGTH = 1024
-};
-
-#endif
-/* ifndef DK4CONST_H_INCLUDED */