add proper function prototypes for Xprint/ps/PsCache.c to Xprint/ps/Ps.h
This commit is contained in:
parent
ee2bb4d192
commit
ea24b5a25c
|
@ -356,6 +356,14 @@ extern Bool InitializePsDriver(int ndx, ScreenPtr pScreen, int argc,
|
||||||
char **argv);
|
char **argv);
|
||||||
extern XpContextPtr PsGetContextFromWindow(WindowPtr win);
|
extern XpContextPtr PsGetContextFromWindow(WindowPtr win);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Functions in PsCache.c
|
||||||
|
*/
|
||||||
|
|
||||||
|
extern int PsBmIsImageCached(int gWidth, int gHeight, char *pBuffer);
|
||||||
|
extern int PsBmPutImageInCache(int gWidth, int gHeight, char *pBuffer);
|
||||||
|
extern void PsBmClearImageCache(void);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Functions in PsPrint.c
|
* Functions in PsPrint.c
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -317,7 +317,7 @@ PsBmClearImageCacheList(
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
PsBmClearImageCache()
|
PsBmClearImageCache(void)
|
||||||
{
|
{
|
||||||
PsBmClearImageCacheList(bm_cache);
|
PsBmClearImageCacheList(bm_cache);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue