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