Example
#include <stdio.h> #include "scan1223.h" #include "mmsultra.h"
void main(void) |
|
|
{ | // Command calls status | |
short sStatus = 0; | ||
LPMSIINFO MSIconfig; | // MSI data struct. | |
sStatus = scnOpenScanner(); | // Enable scanner | |
if (sStatus == |
|
|
printf("Scanner |
| |
else |
|
|
{ |
|
|
sStatus = scnGetMSIInfo(MSIconfig); | // Get config. | |
if (sStatus != 0) |
|
|
printf("Scanner is disabled."); |
|
|
else |
| // Set values |
{ |
|
// Save values
sStatus = scnSetMSIInfo(MSIconfig); if (sStatus != 0)
printf(“Error setting
; /* Scan Bar Codes */ |
|
} |
|
} | // Disable scanner |
sStatus = scnCloseScanner(); |
}