|
From: <kr_...@us...> - 2003-07-04 17:39:07
|
Update of /cvsroot/htoolkit/port/src
In directory sc8-pr-cvs1:/tmp/cvs-serv31718/port/src
Modified Files:
Port.hs
Log Message:
Implementation for persistent configuration keys for both Windows and Linux.
Under Windows they are stored in Windows Registry and under Linux they are
stored in GConf configuration database
Index: Port.hs
===================================================================
RCS file: /cvsroot/htoolkit/port/src/Port.hs,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** Port.hs 26 Apr 2003 20:56:33 -0000 1.15
--- Port.hs 4 Jul 2003 17:39:04 -0000 1.16
***************
*** 31,40 ****
, module Graphics.UI.Port.Timer
! -- * Process
, module Graphics.UI.Port.Process
-- ** Fundamental
, module Graphics.UI.Port.Handlers
! , module Graphics.UI.Port.Types
) where
--- 31,43 ----
, module Graphics.UI.Port.Timer
! -- ** Process
, module Graphics.UI.Port.Process
-- ** Fundamental
, module Graphics.UI.Port.Handlers
! , module Graphics.UI.Port.Types
!
! -- ** Configuration
! , module Graphics.UI.Port.ConfigKey
) where
***************
*** 72,73 ****
--- 75,78 ----
, CBool, fromCBool, toCBool
)
+
+ import Graphics.UI.Port.ConfigKey
|