xref: /aosp_15_r20/external/vboot_reference/firmware/include/vb2_api.h (revision 8617a60d3594060b7ecbd21bc622a7c14f3cf2bc)
1*8617a60dSAndroid Build Coastguard Worker /* Copyright 2014 The ChromiumOS Authors
2*8617a60dSAndroid Build Coastguard Worker  * Use of this source code is governed by a BSD-style license that can be
3*8617a60dSAndroid Build Coastguard Worker  * found in the LICENSE file.
4*8617a60dSAndroid Build Coastguard Worker  *
5*8617a60dSAndroid Build Coastguard Worker  * APIs between calling firmware and vboot_reference
6*8617a60dSAndroid Build Coastguard Worker  *
7*8617a60dSAndroid Build Coastguard Worker  * DO NOT INCLUDE THE HEADERS BELOW DIRECTLY!  ONLY INCLUDE THIS FILE!
8*8617a60dSAndroid Build Coastguard Worker  *
9*8617a60dSAndroid Build Coastguard Worker  * Using vb2_api.h as the single point of contact between calling firmware and
10*8617a60dSAndroid Build Coastguard Worker  * vboot allows subsequent refactoring of vboot (renaming of headers, etc.)
11*8617a60dSAndroid Build Coastguard Worker  * without churning other projects' source code.
12*8617a60dSAndroid Build Coastguard Worker  */
13*8617a60dSAndroid Build Coastguard Worker 
14*8617a60dSAndroid Build Coastguard Worker #ifndef VBOOT_REFERENCE_VB2_API_H_
15*8617a60dSAndroid Build Coastguard Worker #define VBOOT_REFERENCE_VB2_API_H_
16*8617a60dSAndroid Build Coastguard Worker 
17*8617a60dSAndroid Build Coastguard Worker /* Standard APIs */
18*8617a60dSAndroid Build Coastguard Worker #include "../2lib/include/2api.h"
19*8617a60dSAndroid Build Coastguard Worker 
20*8617a60dSAndroid Build Coastguard Worker #endif  /* VBOOT_REFERENCE_VB2_API_H_ */
21