Paxar Gold 6037EX User Manual Page 65

  • Download
  • Add to my manuals
  • Print
  • Page
    / 230
  • Table of contents
  • TROUBLESHOOTING
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews
Page view 64
Function Reference 4-29
Example
#include <stdio.h>
#include "mmsultra.h"
void main(void)
{
short sStatus = 0; // Command calls status
short usStatus = 0; // Command calls status
char far* cStatus = NULL; // Error message
PRINTINIT pConfig; // Print data structure
sStatus = pclInit(NULL); // Start Print subsystem
if (sStatus != 0)
printf("Init Failed\nError: %d", sStatus);
else
{
if (!pclBatteryOkToPrint()) // Check battery
printf("Low battery error");
else
{ // Open file
usStatus = pclOpen("B:\\MPCL\\TEST.FAB");
if (usStatus > 0)
{
cStatus = pclGetErrorMsg(usStatus);
printf("%Fs\n", cStatus);
}
}
}
pclClose(); // Close Print subsystem
}
Page view 64
1 2 ... 60 61 62 63 64 65 66 67 68 69 70 ... 229 230

Comments to this Manuals

No comments