{-# LANGUAGE CPP #-} #if __GLASGOW_HASKELL__ >= 704 {-# LANGUAGE Trustworthy #-} #endif -------------------------------------------------------------------------------- -- | -- Module : System.USB.Devices -- Copyright : (c) 2009–2012 Bas van Dijk -- License : BSD3 (see the file LICENSE) -- Maintainer : Bas van Dijk -- -- This module provides functionality for enumerating the USB devices currently -- attached to the system. -- -------------------------------------------------------------------------------- module System.USB.Enumeration ( Device , getDevices , busNumber , deviceAddress , deviceDesc ) where import System.USB.Base