Go to the source code of this file.
Defines |
| #define | WHICH_BIT(Data, Bit) |
| #define | PAGE_MASK (PAGE_SIZE-1) |
| #define | ntohs(x) ( (((USHORT)x[0])<<8) | x[1] ) |
| #define | PLAY_ACTIVE(DeviceExtension) (((PCDROM_DATA)(DeviceExtension + 1))->PlayActive) |
| #define | MSF_TO_LBA(Minutes, Seconds, Frames) (ULONG)((60 * 75 * (Minutes)) + (75 * (Seconds)) + ((Frames) - 150)) |
| #define | LBA_TO_MSF(Lba, Minutes, Seconds, Frames) |
| #define | DEC_TO_BCD(x) (((x / 10) << 4) + (x % 10)) |
| #define | KdDump(a, b) {} |
| #define | DbgAllocatePool(x, y) ExAllocatePool(x,y) |
| #define | DbgFreePool(x) ExFreePool(x) |
| #define | DbgAllocatePoolWithTag(a, b, c) ExAllocatePoolWithTag(a,b,c) |
| #define | BrutePoint() {} |
| #define | WAIT_FOR_XXX_EMU_DELAY DEF_I64(5000000) |
| #define | PtrOffset(BASE, OFFSET) ((ULONG)((ULONG)(OFFSET) - (ULONG)(BASE))) |
Functions |
| __inline ULONG | CountOfSetBitsUChar (UCHAR _X) |
| __inline ULONG | CountOfSetBitsULong (ULONG _X) |
Variables |
| UNICODE_STRING | SavedSPString |