1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
{- -*- Mode: haskell; -*-
Haskell LDAP Interface
Copyright (C) 2005 John Goerzen <jgoerzen@complete.org>
This code is under a 3-clause BSD license; see COPYING for details.
-}
{- |
Module : LDAP.TypesLL
Copyright : Copyright (C) 2005-2006 John Goerzen
License : BSD
Maintainer : John Goerzen,
Maintainer : jgoerzen\@complete.org
Stability : provisional
Portability: portable
Low-level types for LDAP programs.
Written by John Goerzen, jgoerzen\@complete.org
-}
module LDAP.TypesLL(CLDAP, Berval)
where
data CLDAP
data Berval
|