2004-04-14 Robert Wruck <rwruck@users.sourceforge.net>
* include/ddk/winddk.h (RtlEqualLuid): Correct macro.
This commit is contained in:
parent
f4ae6dc62c
commit
ba1a97a18b
|
@ -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>
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue