1 // Copyright 2018 The Fuchsia Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #pragma once
6 
7 #include <fbl/vector.h>
8 #include <lib/zx/vmo.h>
9 #include <zircon/processargs.h>
10 
11 namespace bootsvc {
12 
13 // Retrieves all bootdata VMOs from the startup handle table
14 fbl::Vector<zx::vmo> RetrieveBootdata();
15 
16 // Path relative to /boot used for crashlogs.
17 extern const char* const kLastPanicFilePath;
18 
19 }
20