blob: c2934a45f6dcc4b4edd541dd34b77a5bf84a69b7 [file] [log] [blame]
#ifndef KVM__VNC_H
#define KVM__VNC_H
#include "kvm/kvm.h"
struct framebuffer;
#ifdef CONFIG_HAS_VNCSERVER
int vnc__init(struct kvm *kvm);
int vnc__exit(struct kvm *kvm);
#else
static inline int vnc__init(struct kvm *kvm)
{
return 0;
}
static inline int vnc__exit(struct kvm *kvm)
{
return 0;
}
#endif
#endif /* KVM__VNC_H */