Skip to content

Commit

Permalink
Rename windows.h to windows_ext.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Rufflewind committed Oct 9, 2017
1 parent da1a2e8 commit 6f3a182
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion System/Directory/Internal/Windows.hsc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module System.Directory.Internal.Windows where
#include <shlobj.h>
#include <windows.h>
#include <System/Directory/Internal/utility.h>
#include <System/Directory/Internal/windows.h>
#include <System/Directory/Internal/windows_ext.h>
import Prelude ()
import System.Directory.Internal.Prelude
import System.Directory.Internal.Common
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#ifndef HS_DIRECTORY_WINDOWS_EXT_H
#define HS_DIRECTORY_WINDOWS_EXT_H
#include <windows.h>

// define prototype to get size, offsets, and alignments
Expand Down Expand Up @@ -27,3 +29,5 @@ typedef struct {
} GenericReparseBuffer;
};
} HsDirectory_REPARSE_DATA_BUFFER;

#endif
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
Changelog for the [`directory`][1] package
==========================================

## 1.3.1.5 (October 2017)

* Rename the internal header `windows.h` to avoid GHC#14312.
([#77](https://github.com/haskell/directory/issues/77))

## 1.3.1.4 (September 2017)

* Fix `Win32` version 2.6 compatibility.
([#75](https://github.com/haskell/directory/pull/75))

## 1.3.1.3 (September 2017)

Expand All @@ -12,6 +18,7 @@ Changelog for the [`directory`][1] package
## 1.3.1.2 (September 2017)

* Relax `base` version bounds to support 4.11.
([#74](https://github.com/haskell/directory/pull/74))

## 1.3.1.1 (March 2017)

Expand Down
2 changes: 1 addition & 1 deletion directory.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: directory
version: 1.3.1.4
version: 1.3.1.5
-- NOTE: Don't forget to update ./changelog.md
license: BSD3
license-file: LICENSE
Expand Down

0 comments on commit 6f3a182

Please sign in to comment.