1160814Ssimon/*
2296465Sdelphij * $LP: LPlib/source/LPdir_win.c,v 1.1 2004/06/14 10:07:56 _cvs_levitte Exp $
3296465Sdelphij */
4296465Sdelphij/*
5160814Ssimon * Copyright (c) 2004, Richard Levitte <richard@levitte.org>
6160814Ssimon * All rights reserved.
7160814Ssimon *
8160814Ssimon * Redistribution and use in source and binary forms, with or without
9160814Ssimon * modification, are permitted provided that the following conditions
10160814Ssimon * are met:
11160814Ssimon * 1. Redistributions of source code must retain the above copyright
12160814Ssimon *    notice, this list of conditions and the following disclaimer.
13160814Ssimon * 2. Redistributions in binary form must reproduce the above copyright
14160814Ssimon *    notice, this list of conditions and the following disclaimer in the
15160814Ssimon *    documentation and/or other materials provided with the distribution.
16160814Ssimon *
17160814Ssimon * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18160814Ssimon * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19160814Ssimon * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20160814Ssimon * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21160814Ssimon * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22160814Ssimon * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23160814Ssimon * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24160814Ssimon * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25160814Ssimon * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26160814Ssimon * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27160814Ssimon * SUCH DAMAGE.
28160814Ssimon */
29160814Ssimon
30160814Ssimon#ifndef LPDIR_H
31296465Sdelphij# include "LPdir.h"
32160814Ssimon#endif
33160814Ssimon
34296465Sdelphijstruct LP_dir_context_st {
35296465Sdelphij    void *dummy;
36296465Sdelphij};
37160814Ssimonconst char *LP_find_file(LP_DIR_CTX **ctx, const char *directory)
38296465Sdelphij{
39296465Sdelphij    errno = EINVAL;
40296465Sdelphij    return 0;
41296465Sdelphij}
42296465Sdelphij
43160814Ssimonint LP_find_file_end(LP_DIR_CTX **ctx)
44296465Sdelphij{
45296465Sdelphij    errno = EINVAL;
46296465Sdelphij    return 0;
47296465Sdelphij}
48