12fd6cc2e7
* move libprint headers into libs headers folder accordingly * merge all shared folders sources into kits print, we might build later on a real print kit, propably also to access cups from an nicely API, atm static * move all shared headers into private print, also pr_server.h from interface * adjust build to work with the changed folder layout git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26570 a95241bf-73f2-0310-859d-f6bbb57e9c96
13 lines
273 B
C
13 lines
273 B
C
/*
|
|
* PackBits.h
|
|
* Copyright 1999-2000 Y.Takagi. All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef __PACKBITS_H
|
|
#define __PACKBITS_H
|
|
|
|
int pack_bits_size(const unsigned char *in, int bytes);
|
|
int pack_bits(unsigned char *out, const unsigned char *in, int bytes);
|
|
|
|
#endif /* __PACKBITS_H */
|