[HAL] Add some header guards.

This commit is contained in:
Amine Khaldi 2017-12-09 13:20:22 +01:00
parent a308735be6
commit 0bae06fa5f
2 changed files with 6 additions and 0 deletions

View file

@ -1,4 +1,6 @@
#pragma once
#ifdef _M_AMD64
#define IOAPIC_BASE 0xFFFFFFFFFFFE1000ULL // checkme
#define ZERO_VECTOR 0x00 // IRQL 00

View file

@ -1,4 +1,6 @@
#ifndef _TSC_H_
#define _TSC_H_
#define NUM_SAMPLES 4
#define MSR_RDTSC 0x10
@ -16,3 +18,5 @@ VOID NTAPI HalpInitializeTsc(void);
#endif
#endif
#endif /* !_TSC_H_ */