WinBufAlloc64() (deprecated)

Allocates a 64-bit Windows global memory buffer for use with 64-bit scan functions, and returns a memory handle for the buffer.

Deprecated. Unless your application calls deprecated methods, use WinBufAlloc64Ex().

Most devices return data in a 16-bit format. For these devices, create the buffer using WinBufAlloc(). 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 WinBufAlloc32() or WinBufAlloc64(). See hardware-specific information to determine the type of buffer needed. If not specifically mentioned, use WinBufAlloc().

Some devices support acquisition of scaled data. In these cases, create the buffer with ScaledWinBufAlloc(). See hardware-specific information to determine if the device supports scaled data.

Member of the MccService class.

Function Prototype

VB .NET

Public Shared Function WinBufAlloc64(ByVal numPoints As Integer) As Integer

C# .NET

public static int WinBufAlloc64(int numPoints)

Parameters

numPoints

The size of the buffer to allocate. Specifies how many data points (64-bit integers, NOT bytes) that the buffer will hold.

Returns

Notes