From 635d5d88000c8fcc6e4faef10663afe6a500422e Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 21 Sep 2004 04:10:43 +0000 Subject: r2459: added STATUS_NO_MORE_FILES nt status code (This used to be commit 3bf55c9e1129d8036a968c49ac2de7260e657f53) --- source4/include/nterr.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source4/include/nterr.h b/source4/include/nterr.h index 1b78ad189c..c5133d1a76 100644 --- a/source4/include/nterr.h +++ b/source4/include/nterr.h @@ -27,9 +27,10 @@ /* Win32 Status codes. */ #define STATUS_BUFFER_OVERFLOW NT_STATUS(0x80000005) +#define STATUS_NO_MORE_FILES NT_STATUS(0x80000006) #define NT_STATUS_NO_MORE_ENTRIES NT_STATUS(0x8000001a) -#define STATUS_MORE_ENTRIES NT_STATUS(0x0105) +#define STATUS_MORE_ENTRIES NT_STATUS(0x0105) #define STATUS_SOME_UNMAPPED NT_STATUS(0x0107) #define ERROR_INVALID_PARAMETER NT_STATUS(0x0057) #define ERROR_INSUFFICIENT_BUFFER NT_STATUS(0x007a) -- cgit