mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 06:07:31 -04:00
21 lines
457 B
C
21 lines
457 B
C
/*-
|
|
* Copyright (c) 2018 VMware, Inc.
|
|
*
|
|
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
|
|
*/
|
|
|
|
/* Event code for the vmci guest driver. */
|
|
|
|
#ifndef _VMCI_EVENT_H_
|
|
#define _VMCI_EVENT_H_
|
|
|
|
#include "vmci_call_defs.h"
|
|
#include "vmci_defs.h"
|
|
|
|
int vmci_event_init(void);
|
|
void vmci_event_exit(void);
|
|
void vmci_event_sync(void);
|
|
int vmci_event_dispatch(struct vmci_datagram *msg);
|
|
bool vmci_event_check_host_capabilities(void);
|
|
|
|
#endif /* !_VMCI_EVENT_H_ */
|