| 48 | |
| 49 | ==== Parameters ==== |
| 50 | |
| 51 | * startchr - character code to start receiving data for specified event, or START_CHR_ANY to start on any character received |
| 52 | * startchrs - array of start characters to start receiving data if any of the characters is received, startchrcnt must be specified |
| 53 | * startchrcnt - number of start characters in array startchrs. |
| 54 | * endchr - character code to end receiving data for specified event, or END_CHR_ANY for unspecified |
| 55 | * endchrs - array of end characters to stop receiving data if any of the characters is received. endchrcnt must be specified |
| 56 | * endcharcnt - number of end characters in array endchrs. |
| 57 | * nRawCnt - Normally 0 for variable length data, otherwise character count may be specified to receive specific number of binary characters after the start |
| 58 | * pDataEvent - COMM_EVENT function to be called after endchr is received or specified number of raw count characters is received |
| 59 | * pUser = User pointer to anything that may be useful that will be passed to the COMM_EVENT function. |
| 60 | |