6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync/** @file
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync *
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync */
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync/*
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync * Copyright (C) 2006-2011 Oracle Corporation
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync *
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync * available from http://www.virtualbox.org. This file is free software;
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync * you can redistribute it and/or modify it under the terms of the GNU
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync * General Public License (GPL) as published by the Free Software
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync */
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync#ifndef __VRDPUSB__H
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync#define __VRDPUSB__H
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync#define VRDP_USB_STATUS_SUCCESS 0
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync#define VRDP_USB_STATUS_ACCESS_DENIED 1
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync#define VRDP_USB_STATUS_DEVICE_REMOVED 2
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync#define VRDP_USB_REAP_FLAG_CONTINUED (0)
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync#define VRDP_USB_REAP_FLAG_LAST (1)
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync#define VRDP_USB_CAPS_FLAG_ASYNC (0)
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync#define VRDP_USB_CAPS_FLAG_POLL (1)
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync
6e9aa255e3376b2da5824c09c4c62bc233463bfevboxsync#endif /* __VRDPUSB__H */