blob: 84e4ea3e01e15b08df773d503284ad15aa3d29e0 [file] [log] [blame]
// Copyright 2017 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.
#pragma once
#include <magenta/compiler.h>
#include <magenta/types.h>
__BEGIN_CDECLS;
typedef struct pciroot_protocol_ops {
} pciroot_protocol_ops_t;
typedef struct pciroot_protocol {
pciroot_protocol_ops_t* ops;
void* ctx;
} pciroot_protocol_t;
__END_CDECLS;