Added a test for MUIA_Listview_SelectChange.
[AROS.git] / workbench / devs / USB / stack / misc.h
blob86d912307b7e3ab1fe7285c91c7be2fae7b7b6f3
1 #ifndef MISC_H_
2 #define MISC_H_
4 /*
5 Copyright (C) 2006 by Michal Schulz
6 $Id$
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU Library General Public License as
10 published by the Free Software Foundation; either version 2 of the
11 License, or (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU Library General Public
19 License along with this program; if not, write to the
20 Free Software Foundation, Inc.,
21 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 #include <inttypes.h>
25 #include <aros/debug.h>
26 #include <usb/usb_core.h>
27 #include <devices/timer.h>
29 void DumpDescriptor(usb_descriptor_t *desc);
30 void USBDelay(struct timerequest *tr, uint32_t msec);
31 struct timerequest *USBCreateTimer();
32 void USBDeleteTimer(struct timerequest *tr);
33 uint32_t USBTimer(struct timerequest *tr, uint32_t msec);
34 void USBTimerDone(struct timerequest *tr);
37 #endif /*MISC_H_*/