usb-1.1.0.3: System/USB/Initialization.hs
{-# LANGUAGE CPP #-}
#if __GLASGOW_HASKELL__ >= 704
{-# LANGUAGE Trustworthy #-}
#endif
--------------------------------------------------------------------------------
-- |
-- Module : System.USB.Init
-- Copyright : (c) 2009–2012 Bas van Dijk
-- License : BSD3 (see the file LICENSE)
-- Maintainer : Bas van Dijk <v.dijk.bas@gmail.com>
--
-- This module provides functionality for initializing the @usb@ library.
--
--------------------------------------------------------------------------------
module System.USB.Initialization
( Ctx
, newCtx
#ifdef HAS_EVENT_MANAGER
, newCtx'
#endif
, setDebug
, Verbosity(..)
) where
import System.USB.Base