summaryrefslogtreecommitdiff
path: root/inc/common/error.h
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2012-12-09 02:41:25 +0400
committerAndrey Nazarov <skuller@skuller.net>2012-12-09 03:08:12 +0400
commitaa21464898b9239fafe148e703bd46a05d65cced (patch)
tree56a6069f493bd599927cb9a006b2e73a406f831d /inc/common/error.h
parent84e0b001e6fe5f79518b17551f07365846d9b756 (diff)
Add download ignore list support.
Allow mods to provide a list of paths that are known to be non-existent and should never be downloaded (e.g. model specific sounds).
Diffstat (limited to 'inc/common/error.h')
-rw-r--r--inc/common/error.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/common/error.h b/inc/common/error.h
index 2a9702e..e1ed1ea 100644
--- a/inc/common/error.h
+++ b/inc/common/error.h
@@ -70,6 +70,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define Q_ERR_MFILE Q_ERR(EMFILE)
#define Q_ERR_EXIST Q_ERR(EEXIST)
#define Q_ERR_BADF Q_ERR(EBADF)
+#define Q_ERR_PERM Q_ERR(EPERM)
#define Q_PrintError(what, code) \
Com_Printf("Couldn't %s: %s\n", what, Q_ErrorString(code))