mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 09:00:27 +00:00
[RXCE] Fix 64 bit build
This commit is contained in:
parent
60f018aea6
commit
cdee669619
1 changed files with 6 additions and 1 deletions
|
@ -725,7 +725,12 @@ RxCancelBlockingOperation(
|
||||||
{
|
{
|
||||||
PFOBX Fobx;
|
PFOBX Fobx;
|
||||||
BOOLEAN PostRequest;
|
BOOLEAN PostRequest;
|
||||||
C_ASSERT(FIELD_OFFSET(RX_CONTEXT, IoStatusBlock.Status) == 100);
|
|
||||||
|
#ifdef _WIN64
|
||||||
|
C_ASSERT(FIELD_OFFSET(RX_CONTEXT, IoStatusBlock.Status) == 0x0B0);
|
||||||
|
#else
|
||||||
|
C_ASSERT(FIELD_OFFSET(RX_CONTEXT, IoStatusBlock.Status) == 0x064);
|
||||||
|
#endif
|
||||||
|
|
||||||
PAGED_CODE();
|
PAGED_CODE();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue