29 lines
474 B
C
29 lines
474 B
C
/*++
|
|
|
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
You may only use this code if you agree to the terms of the Windows Research Kernel Source Code License agreement (see License.txt).
|
|
If you do not agree to the terms, do not use the code.
|
|
|
|
|
|
Module Name:
|
|
|
|
halverifier.c
|
|
|
|
Abstract:
|
|
|
|
This module contains the routines to verify hal usage & apis.
|
|
|
|
--*/
|
|
|
|
#ifndef _HAL_VERIFIER_
|
|
#define _HAL_VERIFIER_
|
|
|
|
VOID
|
|
VfHalVerifierInitialize(
|
|
VOID
|
|
);
|
|
|
|
#endif
|
|
|