blob: 5c36b0b61d183bb64822c3f91980854fb8aa6a40 [file] [log] [blame] [edit]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GARNET_BIN_APPMGR_DYNAMIC_LIBRARY_LOADER_H_
#define GARNET_BIN_APPMGR_DYNAMIC_LIBRARY_LOADER_H_
#include <lib/zx/channel.h>
#include <zircon/types.h>
#include "lib/fxl/files/unique_fd.h"
namespace fuchsia {
namespace sys {
namespace DynamicLibraryLoader {
zx_status_t Start(fxl::UniqueFD fd, zx::channel* result);
} // namespace DynamicLibraryLoader
} // namespace sys
} // namespace fuchsia
#endif // GARNET_BIN_APPMGR_DYNAMIC_LIBRARY_LOADER_H_
OSZAR »