[comp.sys.mac.programmer] Using Packbits

mdr@reed.UUCP (Mike Rutenberg) (05/04/88)

Remember that PackBits() and UnpackBits() both expect pointers to pointers
to the buffer.

Try 
	char *pSrc, *pDest;
	int cb;
	PackBits(&pSrc, &pDest, cb);
	         |
	    This is passing the address of the pointer to the source buffer