4-34 Programmer’s Manual
Example
#include <conio.h>
#include <stdio.h>
#include "mmsultra.h"
void main(void)
{
unsigned short usType = 0;
// Supply type
PRINTINIT pConfig;
// Print data structure
unsigned short usStatus = 0;
// Battery level
short sStatus = 0;
// Command calls status
sStatus = pc
l
Init(NULL);
// Start Print subsystem
if (sStatus != 0)
printf("Init Failed\nError: %d", sStatus);
else {
usStatus = pclGetBatteryLevel();
if (usStatus <= 711)
// Check battery
printf("Charge your battery");
else {
usType = pclGetSupplyType();
// Get supply type
switch (usType) {
// Display result
case MMS_LOW_ENERGY:
printf("Using regular paper");
break;
case MMS_MEDIUM_ENERGY:
printf("Using fax paper");
break;
case MMS_HIGH_ENERGY:
printf("Using synthetic paper");
break;
default: printf("Error-- press any key when reset.");
_getch();
pclClearError();
}
}
}
pclClose();
// Close Print subsystem
}
Summary of Contents for Gold 6037EX
Page 1: ... ROG TC6037EXPM Rev AA 8 03 Printed in the U S A 2003 Paxar Americas Inc All rights reserved ...
Page 2: ... Trademarks 0 1 2 0 0 3 4 5 6 7 78 ...
Page 10: ...viii Table of Contents ...
Page 30: ...2 16 Programmer s Manual ...
Page 36: ...3 6 Programmer s Manual ...
Page 154: ...4 118 Programmer s Manual ...
Page 228: ...14 Index ...
Page 229: ......
Page 230: ......