summaryrefslogtreecommitdiff
path: root/include/fmtmsg.h
diff options
context:
space:
mode:
authorKacper <kacper@mail.openlinux.dev>2025-12-07 20:10:31 +0100
committerKacper <kacper@mail.openlinux.dev>2025-12-07 20:10:31 +0100
commitfc00c656c96528112d05cf0edf8631bd5eaea446 (patch)
treea6e0e6c588191a8bd1c64afc3b7a258e3e66c236 /include/fmtmsg.h
Add build system scaffolding and libc headers
Diffstat (limited to 'include/fmtmsg.h')
-rw-r--r--include/fmtmsg.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/include/fmtmsg.h b/include/fmtmsg.h
new file mode 100644
index 00000000..629c29b9
--- /dev/null
+++ b/include/fmtmsg.h
@@ -0,0 +1,35 @@
+#ifndef __FMTMSG_H
+#define __FMTMSG_H
+
+#define MM_HARD 0x001
+#define MM_SOFT 0x002
+#define MM_FIRM 0x004
+#define MM_APPL 0x008
+#define MM_UTIL 0x010
+#define MM_OPSYS 0x020
+#define MM_RECOVER 0x040
+#define MM_NRECOV 0x080
+#define MM_PRINT 0x100
+#define MM_CONSOLE 0x200
+
+#define MM_NOSEV 0x000
+#define MM_HALT 0x001
+#define MM_ERROR 0x002
+#define MM_WARNING 0x003
+#define MM_INFO 0x004
+
+#define MM_NULLLBL ((char *)0)
+#define MM_NULLSEV (0)
+#define MM_NULLMC ((long int)0L)
+#define MM_NULLTXT ((char *)0)
+#define MM_NULLACT ((char *)0)
+#define MM_NULLTAG ((char *)0)
+
+#define MM_NOTOK (-1)
+#define MM_OK (0)
+#define MM_NOMSG (1)
+#define MM_NOCON (2)
+
+int fmtmsg(long, const char *, int, const char *, const char *, const char *);
+
+#endif