Skip to content

Commit

Permalink
Make DWORD_PTR not a pointer
Browse files Browse the repository at this point in the history
Correct the `_PTR` type that appears not to be a pointer.
  • Loading branch information
Mistuke committed Feb 20, 2018
1 parent ca39a1d commit bb1b22a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions System/Win32/Types.hsc
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ type LONG_PTR = CIntPtr
type ULONG_PTR = CUIntPtr
#ifdef _WIN64
type HALF_PTR = Ptr INT32
type DWORD_PTR = Ptr DWORD64
type DWORD_PTR = DWORD64
#else
type DWORD_PTR = Ptr DWORD32
type DWORD_PTR = DWORD32
type HALF_PTR = Ptr SHORT
#endif

Expand Down

2 comments on commit bb1b22a

@Mistuke
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Win32 Bindings for Haskell :: Win32 Continuous builds Build 56 is now running

@Mistuke
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Win32 Bindings for Haskell :: Win32 Continuous builds Build 56 outcome was SUCCESS
Summary: Running Build time: 00:08:02

Please sign in to comment.