Allocates a 32-bit Windows global memory buffer for use with 32-bit scan functions, and returns a memory handle for the buffer.
Most devices return data in a 16-bit format. For these devices, create the buffer using WinBufAllocEx(). Some devices return data in higher resolution formats, or the resolution of the data can vary depending on various options used to collect the data. In these cases, determine if the buffer needs to be created using WinBufAlloc32Ex() or WinBufAlloc64Ex(). See hardware-specific information to determine the type of buffer needed. If not specifically mentioned, use WinBufAllocEx().
Some devices support acquisition of scaled data. In these cases, create the buffer with ScaledWinBufAllocEx(). See hardware-specific information to determine if the device supports scaled data.
Member of the MccService class.
VB .NET
Public Function WinBufAlloc32Ex(ByVal numPoints As Integer) As IntPtr
C# .NET
public IntPtr WinBufAlloc32Ex(int numPoints)
numPoints
The size of the buffer to allocate. Specifies how many data points (32-bit integers, NOT bytes) that the buffer will hold.