-4. Scanner3.DLL – Backward compatible API for PT930/PT930S’s Scanner3.dllNote : For PA600, it need to dynamically load DLL for using Unitech built-in DLL (Unitech will notprovide *.H and *.LIB for compiler), please refer to Chapter 8 for programming guide.4.1. Enable DecoderFunction Description: This function will open COM4 port, create a thread to get any barcode input fromDecoder Chip, and then store input data in the system buffer. Application can usefunction call PT_GetBarcode() to get input data from the system buffer.Function call:INT PT_EnableBarcode(VOID);Return code:=1 Create new thread fail=2 Cannot re-enable=3 Cannot open COM4=4 Upload parameter from Hamster fail=0 OK4.2. Disable DecoderFunction Description:This function will close COM4 port and then remove thread which is created byPT_EnableBarcode()Function call:VOID PT_DisableBarcode( VOID );4.3. Check barcode inputFunction Description:This function is used to check whether there is available barcode data on systembuffer which is successfully decoded by decoder chip.Function call:BOOL PT_CheckBarcode( VOID );Return code:TRUE = There is input data on system buffer.FALSE = There is no data on system buffer.