epoc32/include/stdapis/ftw.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
williamr@2
     1
/*	$OpenBSD: ftw.h,v 1.1 2003/07/21 21:13:18 millert Exp $	*/
williamr@2
     2
williamr@2
     3
/*
williamr@2
     4
 * Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com>
williamr@4
     5
williamr@2
     6
 *
williamr@2
     7
 * Permission to use, copy, modify, and distribute this software for any
williamr@2
     8
 * purpose with or without fee is hereby granted, provided that the above
williamr@2
     9
 * copyright notice and this permission notice appear in all copies.
williamr@2
    10
 *
williamr@2
    11
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
williamr@2
    12
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
williamr@2
    13
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
williamr@2
    14
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
williamr@2
    15
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
williamr@2
    16
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
williamr@2
    17
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
williamr@2
    18
 *
williamr@2
    19
 * Sponsored in part by the Defense Advanced Research Projects
williamr@2
    20
 * Agency (DARPA) and Air Force Research Laboratory, Air Force
williamr@2
    21
 * Materiel Command, USAF, under agreement number F39502-99-1-0512.
williamr@2
    22
 *
williamr@2
    23
 * $FreeBSD: src/include/ftw.h,v 1.2 2004/08/24 13:00:54 tjr Exp $
williamr@2
    24
 */
williamr@2
    25
williamr@4
    26
/* Portions Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).  All rights reserved.*/
williamr@4
    27
 
williamr@2
    28
#ifndef	_FTW_H
williamr@2
    29
#define	_FTW_H
williamr@2
    30
williamr@2
    31
#ifdef __cplusplus
williamr@2
    32
extern "C"	{
williamr@2
    33
#endif
williamr@2
    34
#include <sys/types.h>
williamr@2
    35
#include <sys/stat.h>
williamr@2
    36
williamr@2
    37
/*
williamr@2
    38
 * Valid flags for the 3rd argument to the function that is passed as the
williamr@2
    39
 * second argument to ftw(3) and nftw(3).  Say it three times fast!
williamr@2
    40
 */
williamr@2
    41
#define	FTW_F		0	/* File.  */
williamr@2
    42
#define	FTW_D		1	/* Directory.  */
williamr@2
    43
#define	FTW_DNR		2	/* Directory without read permission.  */
williamr@2
    44
#define	FTW_DP		3	/* Directory with subdirectories visited.  */
williamr@2
    45
#define	FTW_NS		4	/* Unknown type; stat() failed.  */
williamr@2
    46
#define	FTW_SL		5	/* Symbolic link.  */
williamr@2
    47
#define	FTW_SLN		6	/* Sym link that names a nonexistent file.  */
williamr@2
    48
williamr@2
    49
/*
williamr@2
    50
 * Flags for use as the 4th argument to nftw(3).  These may be ORed together.
williamr@2
    51
 */
williamr@2
    52
#define	FTW_PHYS	0x01	/* Physical walk, don't follow sym links.  */
williamr@2
    53
#define	FTW_MOUNT	0x02	/* The walk does not cross a mount point.  */
williamr@2
    54
#define	FTW_DEPTH	0x04	/* Subdirs visited before the dir itself. */
williamr@2
    55
#define	FTW_CHDIR	0x08	/* Change to a directory before reading it. */
williamr@2
    56
williamr@2
    57
struct FTW {
williamr@2
    58
	int base;
williamr@2
    59
	int level;
williamr@2
    60
};
williamr@2
    61
williamr@2
    62
__BEGIN_DECLS
williamr@2
    63
williamr@2
    64
IMPORT_C int	ftw(const char *, int (*)(const char *, const struct stat *, int), int);
williamr@2
    65
williamr@4
    66
#if defined(SYMBIAN_OE_LARGE_FILE_SUPPORT) && !defined(SYMBIAN_OE_NO_LFS)
williamr@4
    67
#define ftw64	ftw
williamr@4
    68
#endif /* SYMBIAN_OE_LARGE_FILE_SUPPORT && !SYMBIAN_OE_NO_LFS */
williamr@4
    69
williamr@4
    70
williamr@2
    71
#ifndef __SYMBIAN32__
williamr@2
    72
IMPORT_C int	nftw(const char *, int (*)(const char *, const struct stat *, int,
williamr@2
    73
	    struct FTW *), int, int);
williamr@2
    74
#endif	    
williamr@2
    75
__END_DECLS
williamr@2
    76
williamr@2
    77
#ifdef __cplusplus
williamr@2
    78
}
williamr@2
    79
#endif
williamr@2
    80
#endif	/* !_FTW_H */