mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 15:23:39 +00:00
[MKHIVE]
Fix 64 bit build svn path=/trunk/; revision=56790
This commit is contained in:
parent
ab09607ada
commit
4afdffdb21
1 changed files with 5 additions and 0 deletions
|
@ -47,6 +47,11 @@ unsigned char BitScanForward(ULONG * Index, unsigned long Mask);
|
|||
unsigned char BitScanReverse(ULONG * const Index, unsigned long Mask);
|
||||
#define RtlFillMemoryUlong(dst, len, val) memset(dst, val, len)
|
||||
|
||||
#ifdef _M_AMD64
|
||||
#define BitScanForward64 _BitScanForward64
|
||||
#define BitScanReverse64 _BitScanReverse64
|
||||
#endif
|
||||
|
||||
NTSTATUS NTAPI
|
||||
RtlAnsiStringToUnicodeString(
|
||||
IN OUT PUNICODE_STRING UniDest,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue