Author: fireball
Date: Fri May 5 21:46:05 2006
New Revision: 21807
URL:
http://svn.reactos.ru/svn/reactos?rev=21807&view=rev
Log:
Move OBJ_NAME_PATH_SEPARATOR to ndk/obtypes.h (inspired by w3seek). Should make applying
NDK patch easier.
Modified:
trunk/reactos/dll/win32/ws2help/ws2help.h
trunk/reactos/dll/win32/wshirda/wshirda.h
trunk/reactos/drivers/network/wshtcpip/wshtcpip.h
trunk/reactos/include/ndk/obtypes.h
Modified: trunk/reactos/dll/win32/ws2help/ws2help.h
URL:
http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/ws2help/ws2help.h…
==============================================================================
--- trunk/reactos/dll/win32/ws2help/ws2help.h (original)
+++ trunk/reactos/dll/win32/ws2help/ws2help.h Fri May 5 21:46:05 2006
@@ -16,9 +16,6 @@
#define EXPORT STDCALL
-#define OBJ_NAME_PATH_SEPARATOR ((WCHAR)L'\\')
-
-
#endif /* __WS2HELP_H */
/* EOF */
Modified: trunk/reactos/dll/win32/wshirda/wshirda.h
URL:
http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/wshirda/wshirda.h…
==============================================================================
--- trunk/reactos/dll/win32/wshirda/wshirda.h (original)
+++ trunk/reactos/dll/win32/wshirda/wshirda.h Fri May 5 21:46:05 2006
@@ -16,9 +16,6 @@
#define EXPORT STDCALL
-#define OBJ_NAME_PATH_SEPARATOR ((WCHAR)L'\\')
-
-
#endif /* __WSHIRDA_H */
/* EOF */
Modified: trunk/reactos/drivers/network/wshtcpip/wshtcpip.h
URL:
http://svn.reactos.ru/svn/reactos/trunk/reactos/drivers/network/wshtcpip/ws…
==============================================================================
--- trunk/reactos/drivers/network/wshtcpip/wshtcpip.h (original)
+++ trunk/reactos/drivers/network/wshtcpip/wshtcpip.h Fri May 5 21:46:05 2006
@@ -12,8 +12,6 @@
#include <rtlfuncs.h>
#define EXPORT STDCALL
-
-#define OBJ_NAME_PATH_SEPARATOR ((WCHAR)L'\\')
#define DD_TCP_DEVICE_NAME L"\\Device\\Tcp"
#define DD_UDP_DEVICE_NAME L"\\Device\\Udp"
Modified: trunk/reactos/include/ndk/obtypes.h
URL:
http://svn.reactos.ru/svn/reactos/trunk/reactos/include/ndk/obtypes.h?rev=2…
==============================================================================
--- trunk/reactos/include/ndk/obtypes.h (original)
+++ trunk/reactos/include/ndk/obtypes.h Fri May 5 21:46:05 2006
@@ -56,6 +56,11 @@
#define DIRECTORY_CREATE_OBJECT 0x0004
#define DIRECTORY_CREATE_SUBDIRECTORY 0x0008
#define DIRECTORY_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED | 0xF)
+
+//
+// Slash separator used in the OB Namespace (and Registry)
+//
+#define OBJ_NAME_PATH_SEPARATOR L'\\'
#else