diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/WindowsEnv/Environment.hs (renamed from src/Windows/Environment.hs) | 6 | ||||
-rw-r--r-- | src/WindowsEnv/Registry.hs (renamed from src/Windows/Registry.hs) | 2 | ||||
-rw-r--r-- | src/WindowsEnv/Utils.hs (renamed from src/Windows/Utils.hs) | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/Windows/Environment.hs b/src/WindowsEnv/Environment.hs index b975be4..8bfb449 100644 --- a/src/Windows/Environment.hs +++ b/src/WindowsEnv/Environment.hs @@ -8,7 +8,7 @@ -- -- High-level functions for reading and writing Windows environment variables. -module Windows.Environment +module WindowsEnv.Environment ( Profile(..) , profileKeyPath @@ -28,8 +28,8 @@ import Control.Monad.Trans.Except (ExceptT(..)) import Data.List (intercalate) import Data.List.Split (splitOn) -import qualified Windows.Registry as Registry -import Windows.Utils (notifyEnvironmentUpdate) +import qualified WindowsEnv.Registry as Registry +import WindowsEnv.Utils (notifyEnvironmentUpdate) data Profile = CurrentUser | AllUsers diff --git a/src/Windows/Registry.hs b/src/WindowsEnv/Registry.hs index e7daaab..da889d4 100644 --- a/src/Windows/Registry.hs +++ b/src/WindowsEnv/Registry.hs @@ -8,7 +8,7 @@ -- -- Lower-level functions for reading and writing registry values. -module Windows.Registry +module WindowsEnv.Registry ( IsKeyPath(..) , RootKey(..) , KeyPath(..) diff --git a/src/Windows/Utils.hs b/src/WindowsEnv/Utils.hs index 414ec50..c852229 100644 --- a/src/Windows/Utils.hs +++ b/src/WindowsEnv/Utils.hs @@ -5,7 +5,7 @@ -- Stability : experimental -- Portability : Windows-only -module Windows.Utils +module WindowsEnv.Utils ( notifyEnvironmentUpdate ) where |