Skip to content

Commit

Permalink
Fix for *win_buf_alloc* type function allocations for addresses > 32-bit
Browse files Browse the repository at this point in the history
-Fix for *win_buf_alloc* type function allocations for addresses > 32-bit
-Updated version to 0.9.7
  • Loading branch information
dfraskamcc committed Sep 5, 2017
1 parent 97385f8 commit 0551a1b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Binary file modified examples.zip
Binary file not shown.
4 changes: 4 additions & 0 deletions mcculw/ul.py
Original file line number Diff line number Diff line change
Expand Up @@ -4220,6 +4220,7 @@ def scaled_win_array_to_buf(data_array, memhandle, first_point, count):


_cbw.cbScaledWinBufAlloc.argtypes = [c_long]
_cbw.cbScaledWinBufAlloc.restype = HGLOBAL


def scaled_win_buf_alloc(num_points):
Expand Down Expand Up @@ -5500,6 +5501,7 @@ def win_array_to_buf_32(data_array, memhandle, first_point, count):


_cbw.cbWinBufAlloc.argtypes = [c_long]
_cbw.cbWinBufAlloc.restype = HGLOBAL


def win_buf_alloc(num_points):
Expand Down Expand Up @@ -5539,6 +5541,7 @@ def win_buf_alloc(num_points):


_cbw.cbWinBufAlloc32.argtypes = [c_long]
_cbw.cbWinBufAlloc32.restype = HGLOBAL


def win_buf_alloc_32(num_points):
Expand Down Expand Up @@ -5578,6 +5581,7 @@ def win_buf_alloc_32(num_points):


_cbw.cbWinBufAlloc64.argtypes = [c_long]
_cbw.cbWinBufAlloc64.restype = HGLOBAL


def win_buf_alloc_64(num_points):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from setuptools import setup, find_packages

__version__ = '0.9.6'
__version__ = '0.9.7'

here = path.abspath(path.dirname(__file__))

Expand Down

0 comments on commit 0551a1b

Please sign in to comment.