mirror of
https://github.com/MopriaAlliance/CUPS-for-Android.git
synced 2025-08-03 19:04:37 +08:00
70 lines
1.5 KiB
C
70 lines
1.5 KiB
C
/*
|
|
* "$Id: dir.h 7026 2007-10-19 00:57:45Z mike $"
|
|
*
|
|
* Public directory definitions for CUPS.
|
|
*
|
|
* This set of APIs abstracts enumeration of directory entries.
|
|
*
|
|
* Copyright 2007-2011 by Apple Inc.
|
|
* Copyright 1997-2006 by Easy Software Products, all rights reserved.
|
|
*
|
|
* These coded instructions, statements, and computer programs are the
|
|
* 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_DIR_H_
|
|
# define _CUPS_DIR_H_
|
|
|
|
|
|
/*
|
|
* Include necessary headers...
|
|
*/
|
|
|
|
# include "versioning.h"
|
|
# include <sys/stat.h>
|
|
|
|
|
|
/*
|
|
* C++ magic...
|
|
*/
|
|
|
|
# ifdef __cplusplus
|
|
extern "C" {
|
|
# endif /* __cplusplus */
|
|
|
|
|
|
/*
|
|
* Data types...
|
|
*/
|
|
|
|
typedef struct _cups_dir_s cups_dir_t; /**** Directory type ****/
|
|
|
|
typedef struct cups_dentry_s /**** Directory entry type ****/
|
|
{
|
|
char filename[260]; /* File name */
|
|
struct stat fileinfo; /* File information */
|
|
} cups_dentry_t;
|
|
|
|
|
|
/*
|
|
* Prototypes...
|
|
*/
|
|
|
|
extern void cupsDirClose(cups_dir_t *dp) _CUPS_API_1_2;
|
|
extern cups_dir_t *cupsDirOpen(const char *directory) _CUPS_API_1_2;
|
|
extern cups_dentry_t *cupsDirRead(cups_dir_t *dp) _CUPS_API_1_2;
|
|
extern void cupsDirRewind(cups_dir_t *dp) _CUPS_API_1_2;
|
|
|
|
|
|
# ifdef __cplusplus
|
|
}
|
|
# endif /* __cplusplus */
|
|
#endif /* !_CUPS_DIR_H_ */
|
|
|
|
/*
|
|
* End of "$Id: dir.h 7026 2007-10-19 00:57:45Z mike $".
|
|
*/
|