1 /*
2  * Copyright (C) 2018 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include <bootimg/bootimg.h>
18 
19 // This header has been created for the following reaons:
20 //    1) In order for a change in a user defined type to be classified as API /
21 //       ABI breaking, it needs to be referenced by an 'exported interface'
22 //       (in this case the function mkbootimg_dummy).
23 //    2) Since 'mkbootimg_dummy' needs to be exported, we need to have it
24 //       exposed through a public header.
25 //    3) It is desirable not to pollute bootimg.h with interfaces which are not
26 //       'used' in reality by on device binaries. Furthermore, bootimg.h might
27 //       be exported by a library in the future, so we must avoid polluting it.
28 void mkbootimg_dummy(boot_img_hdr*);
29