// pointofservicedriverinterface.h
typedef struct _PosBarcodeScanDataTypeData {
UINT32 dataLengthInBytes;
UINT32 scanDataTypes_0;
} PosBarcodeScanDataTypeData;
View the official Windows Driver Kit DDI referenceNo description available.
This structure describes a buffer of barcode symbologies supported by the driver.
dataLengthInBytesThe size of the buffer that contains the symbologies, including the size of the PosBarcodeScanDataTypeData structure.
scanDataTypes_0The start of the DWORD array of symbologies.
Each symbology in the buffer is represented by a DWORD. The size of the array of symboligies that scanDataTypes_0 points to is scanDataTypes_0/sizeof(UINT32) - 1;