2b8899b47a
and VMware legal: - Add a dual BSD-2 Clause/GPLv2 LICENSE file in the VMCI directory - Remove the use of "All Rights Reserved" - Per best practice, remove copyright/license info from Makefile Reviewed by: imp, emaste, jhb, Vishnu Dasa <vdasa@vmware.com> Approved by: VMware legal via Mark Peek <markpeek@vmware.com> Differential Revision: https://reviews.freebsd.org/D14979
19 lines
392 B
C
19 lines
392 B
C
/*-
|
|
* Copyright (c) 2018 VMware, Inc.
|
|
*
|
|
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
/* Kernel API (current) exported from the VMCI guest driver. */
|
|
|
|
#ifndef _VMCI_KERNEL_API_H_
|
|
#define _VMCI_KERNEL_API_H_
|
|
|
|
/* With this file you always get the latest version. */
|
|
#include "vmci_kernel_api_1.h"
|
|
#include "vmci_kernel_api_2.h"
|
|
|
|
#endif /* !_VMCI_KERNEL_API_H_ */
|