4-16 Programmer’s Manual
/* Calibrate with constant 2" width and paper type */
/* Let function prompt for the stock length */
usStatus = pclCalibrate(0xFFFF, 200, MMS_LOW_ENERGY, 0, 0);
if (usStatus != 0)
{
printf("Calibrate Failed\nError: %u", usStatus);
pclClose();
exit(1);
}
pclClose();
exit(0);
}
/* Calibration callback function to prompt for paper type */
unsigned short far pascal StockTypePrompt
(unsigned short far * lpusPaperType)
{
short sCols, sPages, sKey;
for (;;)
// loop doing ...
{
// clear screen
vidSetMode(vidGetState(&sCols, &sPages));
printf("Enter Stock Type\n(0-2):\n");
// display prompt
sKey = _getch();
// get key
if (sKey == 0)
// if extended key
_getch();
// clear it out
else if (sKey >= '0' && sKey <= '2')
// if valid type
break;
// stop prompting
}
*lpusPaperType = (unsigned short) sKey;
// save the setting
return(0);
// return success
}
Содержание Gold 6037EX
Страница 1: ... ROG TC6037EXPM Rev AA 8 03 Printed in the U S A 2003 Paxar Americas Inc All rights reserved ...
Страница 2: ... Trademarks 0 1 2 0 0 3 4 5 6 7 78 ...
Страница 10: ...viii Table of Contents ...
Страница 30: ...2 16 Programmer s Manual ...
Страница 36: ...3 6 Programmer s Manual ...
Страница 154: ...4 118 Programmer s Manual ...
Страница 228: ...14 Index ...
Страница 229: ......
Страница 230: ......