summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--emu/Nt/devfs.c4
-rw-r--r--emu/Nt/ie-os.c1
-rw-r--r--emu/Nt/os.c1
-rw-r--r--include/version.h2
5 files changed, 9 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index f4ba797f..4612c6f9 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+20090821
+ emu/Nt/^(os.c ie-os.c) add #include <excpt.h>
20090819
appl/cmd/mk/mk.b replace maketmp/mktemp (issue 202, mechiel); also old change: don't persist with bulkmtime on non-directories
20090816
diff --git a/emu/Nt/devfs.c b/emu/Nt/devfs.c
index 89d52e83..e95e9fd5 100644
--- a/emu/Nt/devfs.c
+++ b/emu/Nt/devfs.c
@@ -11,6 +11,10 @@
/* TODO: try using / in place of \ in path names */
+#ifndef SID_MAX_SUB_AUTHORITIES
+#define SID_MAX_SUB_AUTHORITIES 15
+#endif
+
enum
{
MAX_SID = sizeof(SID) + SID_MAX_SUB_AUTHORITIES*sizeof(DWORD),
diff --git a/emu/Nt/ie-os.c b/emu/Nt/ie-os.c
index f2e559ca..ddf09b57 100644
--- a/emu/Nt/ie-os.c
+++ b/emu/Nt/ie-os.c
@@ -4,6 +4,7 @@
#include <winbase.h>
#include <winsock.h>
#undef Unknown
+#include <excpt.h>
#include "dat.h"
#include "fns.h"
#include "error.h"
diff --git a/emu/Nt/os.c b/emu/Nt/os.c
index 1c49fc07..64c82b42 100644
--- a/emu/Nt/os.c
+++ b/emu/Nt/os.c
@@ -4,6 +4,7 @@
#include <winbase.h>
#include <winsock.h>
#undef Unknown
+#include <excpt.h>
#include "dat.h"
#include "fns.h"
#include "error.h"
diff --git a/include/version.h b/include/version.h
index b2d12a36..a9df1fc3 100644
--- a/include/version.h
+++ b/include/version.h
@@ -1 +1 @@
-#define VERSION "Fourth Edition (20090819)"
+#define VERSION "Fourth Edition (20090821)"