You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1020 B
49 lines
1020 B
/*
|
|
* Private PWG media API definitions for CUPS.
|
|
*
|
|
* Copyright 2009-2016 by Apple Inc.
|
|
*
|
|
* Licensed under Apache License v2.0. See the file "LICENSE" for more information.
|
|
*/
|
|
|
|
#ifndef _CUPS_PWG_PRIVATE_H_
|
|
# define _CUPS_PWG_PRIVATE_H_
|
|
|
|
|
|
/*
|
|
* Include necessary headers...
|
|
*/
|
|
|
|
# include <cups/cups.h>
|
|
|
|
|
|
/*
|
|
* C++ magic...
|
|
*/
|
|
|
|
# ifdef __cplusplus
|
|
extern "C" {
|
|
# endif /* __cplusplus */
|
|
|
|
|
|
/*
|
|
* Functions...
|
|
*/
|
|
|
|
extern void _pwgGenerateSize(char *keyword, size_t keysize,
|
|
const char *prefix,
|
|
const char *name,
|
|
int width, int length)
|
|
_CUPS_INTERNAL_MSG("Use pwgFormatSizeName instead.");
|
|
extern int _pwgInitSize(pwg_size_t *size, ipp_t *job,
|
|
int *margins_set)
|
|
_CUPS_INTERNAL_MSG("Use pwgInitSize instead.");
|
|
extern const pwg_media_t *_pwgMediaTable(size_t *num_media) _CUPS_PRIVATE;
|
|
extern pwg_media_t *_pwgMediaNearSize(int width, int length, int epsilon) _CUPS_PRIVATE;
|
|
|
|
# ifdef __cplusplus
|
|
}
|
|
# endif /* __cplusplus */
|
|
|
|
#endif /* !_CUPS_PWG_PRIVATE_H_ */
|