2004-04-14 Robert Wruck <rwruck@users.sourceforge.net>

* include/ddk/winddk.h (RtlEqualLuid): Correct macro.
This commit is contained in:
Danny Smith 2004-04-14 10:53:17 +00:00
parent f4ae6dc62c
commit ba1a97a18b
2 changed files with 10 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2004-04-14 Robert Wruck <rwruck@users.sourceforge.net>
* include/ddk/winddk.h (RtlEqualLuid): Correct macro.
2004-04-06 Luke Dunstan <infidel@users.sourceforge.net> 2004-04-06 Luke Dunstan <infidel@users.sourceforge.net>
* include/ocidl.h (QACONTAINERFLAGS): Correct typedef. * include/ocidl.h (QACONTAINERFLAGS): Correct typedef.
@ -8,7 +12,7 @@
* lib/directx/dxerr.c: Remove dependence on mingw runtime. * lib/directx/dxerr.c: Remove dependence on mingw runtime.
Don't include stdio.h or tchar.h. Don't include stdio.h or tchar.h.
Replace _T() macro with TEXT() macro, throughout. Replace _T() macro with TEXT() macro, throughout.
Replace, _stprintf with wsprintf, throughout. Replace _stprintf with wsprintf, throughout.
2004-03-27 Hosaka Yuji <hos@tamanegi.org> 2004-03-27 Hosaka Yuji <hos@tamanegi.org>

View File

@ -4398,12 +4398,12 @@ RtlDeleteRegistryValue(
/* /*
* BOOLEAN * BOOLEAN
* RtlEqualLuid( * RtlEqualLuid(
* IN LUID Luid1, * IN LUID* Luid1,
* IN LUID Luid2) * IN LUID* Luid2)
*/ */
#define RtlEqualLuid(_Luid1, \ #define RtlEqualLuid(_Luid1,_Luid2) \
_Luid2) \ ((BOOLEAN) (((_Luid1)->LowPart == (_Luid2)->LowPart) \
((Luid1.LowPart == Luid2.LowPart) && (Luid1.HighPart == Luid2.HighPart)) && ((_Luid1)->HighPart == (_Luid2)->HighPart)))
/* /*
* ULONG * ULONG