mirror of
https://github.com/reactos/reactos.git
synced 2025-05-19 09:10:56 +00:00
[NTOSKRNL] Introduce the UUID_CACHED_VALUES_STRUCT structure
Source: https://blog.48bits.com/el-codigo-ntoskvinci/
This commit is contained in:
parent
81c88c1029
commit
2d9673c68f
2 changed files with 10 additions and 0 deletions
|
@ -41,6 +41,7 @@ static UCHAR UuidSeed[SEED_BUFFER_SIZE];
|
||||||
static ULONG UuidCount;
|
static ULONG UuidCount;
|
||||||
static LARGE_INTEGER LuidIncrement;
|
static LARGE_INTEGER LuidIncrement;
|
||||||
static LARGE_INTEGER LuidValue;
|
static LARGE_INTEGER LuidValue;
|
||||||
|
UUID_CACHED_VALUES_STRUCT ExpUuidCachedValues = { 0ULL, 0xFFFFFFFF, 0, 0, { 0x80, 0x6E, 0x6F, 0x6E, 0x69, 0x63 } };
|
||||||
|
|
||||||
/* FUNCTIONS ****************************************************************/
|
/* FUNCTIONS ****************************************************************/
|
||||||
|
|
||||||
|
|
|
@ -167,6 +167,15 @@ ExGetPoolTagInfo(
|
||||||
IN OUT PULONG ReturnLength OPTIONAL
|
IN OUT PULONG ReturnLength OPTIONAL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
typedef struct _UUID_CACHED_VALUES_STRUCT
|
||||||
|
{
|
||||||
|
ULONGLONG Time;
|
||||||
|
LONG AllocatedCount;
|
||||||
|
UCHAR ClockSeqHiAndReserved;
|
||||||
|
UCHAR ClockSeqLow;
|
||||||
|
UCHAR NodeId [ 6 ] ;
|
||||||
|
} UUID_CACHED_VALUES_STRUCT, *PUUID_CACHED_VALUES_STRUCT;
|
||||||
|
|
||||||
/* INITIALIZATION FUNCTIONS *************************************************/
|
/* INITIALIZATION FUNCTIONS *************************************************/
|
||||||
|
|
||||||
INIT_FUNCTION
|
INIT_FUNCTION
|
||||||
|
|
Loading…
Reference in a new issue