mirror of
https://github.com/reactos/reactos.git
synced 2025-07-30 22:51:51 +00:00
[NDK][HAL][NTOS] Add missing PRCB_MINOR_VERSION / PRCB_MAJOR_VERSION and use them.
This commit is contained in:
parent
cfbb734799
commit
9ea2b803c8
8 changed files with 21 additions and 10 deletions
|
@ -33,10 +33,18 @@ Author:
|
|||
#define IPI_SYNCH_REQUEST 10
|
||||
#define MAXIMUM_VECTOR 0x100
|
||||
|
||||
//
|
||||
// Static Kernel-Mode Address start (use MM_KSEG0_BASE for actual)
|
||||
//
|
||||
#define KSEG0_BASE 0x80000000
|
||||
|
||||
#define PRCB_MAJOR_VERSION 1
|
||||
#define PRCB_BUILD_DEBUG 1
|
||||
//
|
||||
// PRCB Flags
|
||||
//
|
||||
#define PRCB_MINOR_VERSION 1
|
||||
#define PRCB_MAJOR_VERSION 1
|
||||
#define PRCB_BUILD_DEBUG 1
|
||||
#define PRCB_BUILD_UNIPROCESSOR 2
|
||||
|
||||
#ifndef ROUND_UP
|
||||
#define ROUND_UP(x,y) (((x) + ((y)-1)) & ~((y)-1))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue