projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
8e0fca6
)
Fixed the definition of RtlUnicodeStringToCountedOemSize. This will fix bug 756.
author
Hartmut Birr
<osexpert@googlemail.com>
Wed, 7 Sep 2005 17:20:28 +0000
(17:20 +0000)
committer
Hartmut Birr
<osexpert@googlemail.com>
Wed, 7 Sep 2005 17:20:28 +0000
(17:20 +0000)
svn path=/trunk/; revision=17724
reactos/include/ndk/rtlfuncs.h
patch
|
blob
|
history
diff --git
a/reactos/include/ndk/rtlfuncs.h
b/reactos/include/ndk/rtlfuncs.h
index
41f60f2
..
d5bfe11
100644
(file)
--- a/
reactos/include/ndk/rtlfuncs.h
+++ b/
reactos/include/ndk/rtlfuncs.h
@@
-839,7
+839,7
@@
RtlxUnicodeStringToOemSize(IN PCUNICODE_STRING UnicodeString);
((STRING)->Length + sizeof(UNICODE_NULL)) / sizeof(WCHAR) \
)
#define RtlUnicodeStringToCountedOemSize(STRING) ( \
- (ULONG)(RtlUnicodeStringToOemSize(STRING) - sizeof(
UNICODE
_NULL)) \
+ (ULONG)(RtlUnicodeStringToOemSize(STRING) - sizeof(
ANSI
_NULL)) \
)
#endif