Example
#include <stdio.h> #include "mmsultra.h"
void main(void) |
|
{ | // Command calls status |
short sStatus = 0; | |
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 |
|
{ | // Check battery |
if (!pclBatteryOkToPrint()) | |
printf("Low battery error"); |
|
else | // Open file |
{ |
usStatus = pclOpen("B:\\MPCL\\TEST.FAB"); if (usStatus > 0)
{
cStatus = pclGetErrorMsg(usStatus);
printf("%Fs\n", cStatus); |
|
} |
|
} |
|
} | // Close Print subsystem |
pclClose(); | |
} |
|