epoc32/include/stdapis/glib-2.0/glib/gdir.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
parent 0 061f57f2323e
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
williamr@2
     1
/* GLIB - Library of useful routines for C programming
williamr@2
     2
 * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
williamr@2
     3
 *
williamr@2
     4
 * gdir.c: Simplified wrapper around the DIRENT functions.
williamr@2
     5
 *
williamr@2
     6
 * Copyright 2001 Hans Breuer
williamr@2
     7
 * Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
williamr@2
     8
 *
williamr@2
     9
 * This library is free software; you can redistribute it and/or
williamr@2
    10
 * modify it under the terms of the GNU Lesser General Public
williamr@2
    11
 * License as published by the Free Software Foundation; either
williamr@2
    12
 * version 2 of the License, or (at your option) any later version.
williamr@2
    13
 *
williamr@2
    14
 * This library is distributed in the hope that it will be useful,
williamr@2
    15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
williamr@2
    16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
williamr@2
    17
 * Lesser General Public License for more details.
williamr@2
    18
 *
williamr@2
    19
 * You should have received a copy of the GNU Lesser General Public
williamr@2
    20
 * License along with this library; if not, write to the
williamr@2
    21
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
williamr@2
    22
 * Boston, MA 02111-1307, USA.
williamr@2
    23
 */
williamr@2
    24
#ifndef __G_DIR_H__
williamr@2
    25
#define __G_DIR_H__
williamr@2
    26
williamr@2
    27
#include <_ansi.h>
williamr@2
    28
#include <glib/gerror.h>
williamr@2
    29
williamr@2
    30
G_BEGIN_DECLS
williamr@2
    31
williamr@2
    32
typedef struct _GDir GDir;
williamr@2
    33
williamr@2
    34
#ifdef G_OS_WIN32
williamr@2
    35
/* For DLL ABI stability, keep old names for old (non-UTF-8) functionality. */
williamr@2
    36
#define g_dir_open g_dir_open_utf8
williamr@2
    37
#define g_dir_read_name g_dir_read_name_utf8
williamr@2
    38
#endif
williamr@2
    39
williamr@2
    40
IMPORT_C GDir    *                g_dir_open           (const gchar  *path,
williamr@2
    41
					       guint         flags,
williamr@2
    42
					       GError      **error);
williamr@2
    43
IMPORT_C G_CONST_RETURN gchar    *g_dir_read_name      (GDir         *dir);
williamr@2
    44
IMPORT_C void                     g_dir_rewind         (GDir         *dir);
williamr@2
    45
IMPORT_C void                     g_dir_close          (GDir         *dir);
williamr@2
    46
williamr@2
    47
G_END_DECLS
williamr@2
    48
williamr@2
    49
#endif /* __G_DIR_H__ */