]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cups/file.h
Load cups into easysw/current.
[thirdparty/cups.git] / cups / file.h
index fa9088c15a5486f8b626f5ab391ef73473679e74..89b6c4079d0e25e9c81aa08f40f4d4643f121f50 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * "$Id: file.h 4933 2006-01-16 00:26:57Z mike $"
+ * "$Id: file.h 6649 2007-07-11 21:46:42Z mike $"
  *
  *   Public file definitions for the Common UNIX Printing System (CUPS).
  *
@@ -8,23 +8,14 @@
  *   our own file functions allows us to provide transparent support of
  *   gzip'd print files, PPD files, etc.
  *
- *   Copyright 1997-2005 by Easy Software Products, all rights reserved.
+ *   Copyright 2007 by Apple Inc.
+ *   Copyright 1997-2007 by Easy Software Products, all rights reserved.
  *
  *   These coded instructions, statements, and computer programs are the
- *   property of Easy Software Products and are protected by Federal
- *   copyright law.  Distribution and use rights are outlined in the file
- *   "LICENSE.txt" which should have been included with this file.  If this
- *   file is missing or damaged please contact Easy Software Products
- *   at:
- *
- *       Attn: CUPS Licensing Information
- *       Easy Software Products
- *       44141 Airport View Drive, Suite 204
- *       Hollywood, Maryland 20636 USA
- *
- *       Voice: (301) 373-9600
- *       EMail: cups-info@cups.org
- *         WWW: http://www.cups.org
+ *   property of Apple Inc. and are protected by Federal copyright
+ *   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
+ *   which should have been included with this file.  If this file is
+ *   file is missing or damaged, see the license at "http://www.cups.org/".
  */
 
 #ifndef _CUPS_FILE_H_
  */
 
 #  include <sys/types.h>
-
-#  ifdef WIN32
+#  if defined(WIN32) && !defined(__CUPS_SSIZE_T_DEFINED)
+#    define __CUPS_SSIZE_T_DEFINED
 /* Windows does not support the ssize_t type, so map it to off_t... */
 typedef off_t ssize_t;                 /* @private@ */
-#  endif /* WIN32 */
+#  endif /* WIN32 && !__CUPS_SSIZE_T_DEFINED */
 
 
 /*
  * C++ magic...
  */
 
-#  ifdef _cplusplus
+#  ifdef __cplusplus
 extern "C" {
-#  endif /* _cplusplus */
+#  endif /* __cplusplus */
 
 
 /*
@@ -75,11 +66,14 @@ extern int          cupsFileClose(cups_file_t *fp);
 extern int             cupsFileCompression(cups_file_t *fp);
 extern int             cupsFileEOF(cups_file_t *fp);
 extern const char      *cupsFileFind(const char *filename, const char *path,
-                                     char *buffer, int bufsize);
+                                     int executable, char *buffer,
+                                     int bufsize);
 extern int             cupsFileFlush(cups_file_t *fp);
 extern int             cupsFileGetChar(cups_file_t *fp);
 extern char            *cupsFileGetConf(cups_file_t *fp, char *buf, size_t buflen,
                                         char **value, int *linenum);
+extern size_t          cupsFileGetLine(cups_file_t *fp, char *buf,
+                                       size_t buflen);
 extern char            *cupsFileGets(cups_file_t *fp, char *buf, size_t buflen);
 extern int             cupsFileLock(cups_file_t *fp, int block);
 extern int             cupsFileNumber(cups_file_t *fp);
@@ -92,16 +86,19 @@ extern int          cupsFilePuts(cups_file_t *fp, const char *s);
 extern ssize_t         cupsFileRead(cups_file_t *fp, char *buf, size_t bytes);
 extern off_t           cupsFileRewind(cups_file_t *fp);
 extern off_t           cupsFileSeek(cups_file_t *fp, off_t pos);
+extern cups_file_t     *cupsFileStderr(void);
+extern cups_file_t     *cupsFileStdin(void);
+extern cups_file_t     *cupsFileStdout(void);
 extern off_t           cupsFileTell(cups_file_t *fp);
 extern int             cupsFileUnlock(cups_file_t *fp);
 extern ssize_t         cupsFileWrite(cups_file_t *fp, const char *buf, size_t bytes);
 
 
-#  ifdef _cplusplus
+#  ifdef __cplusplus
 }
-#  endif /* _cplusplus */
+#  endif /* __cplusplus */
 #endif /* !_CUPS_FILE_H_ */
 
 /*
- * End of "$Id: file.h 4933 2006-01-16 00:26:57Z mike $".
+ * End of "$Id: file.h 6649 2007-07-11 21:46:42Z mike $".
  */