Allocates a Windows global memory buffer for use with the 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 win_buf_alloc(). 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 win_buf_alloc_32() or win_buf_alloc_64(). Refer to hardware-specific information to determine the type of buffer needed. If not specifically mentioned, use win_buf_alloc().
Some devices support acquisition of scaled data. In these cases, create the buffer with scaled_win_buf_alloc(). Refer to hardware-specific information to determine if the device supports scaled data.
win_buf_alloc_32(num_points)
num_points (int)
The size of the buffer to allocate. Specifies how many data points (32-bit integers, NOT bytes) can be stored in the buffer.