LPdir_nyi.c revision 267654
120253Sjoerg/* $LP: LPlib/source/LPdir_win.c,v 1.1 2004/06/14 10:07:56 _cvs_levitte Exp $ */
220302Sjoerg/*
320302Sjoerg * Copyright (c) 2004, Richard Levitte <richard@levitte.org>
420253Sjoerg * All rights reserved.
520253Sjoerg *
620253Sjoerg * Redistribution and use in source and binary forms, with or without
720253Sjoerg * modification, are permitted provided that the following conditions
820253Sjoerg * are met:
920302Sjoerg * 1. Redistributions of source code must retain the above copyright
1020253Sjoerg *    notice, this list of conditions and the following disclaimer.
1120253Sjoerg * 2. Redistributions in binary form must reproduce the above copyright
1220253Sjoerg *    notice, this list of conditions and the following disclaimer in the
1320253Sjoerg *    documentation and/or other materials provided with the distribution.
1420302Sjoerg *
1520253Sjoerg * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1620253Sjoerg * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1720302Sjoerg * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1820253Sjoerg * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1920253Sjoerg * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2020253Sjoerg * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2120253Sjoerg * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2220253Sjoerg * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2320253Sjoerg * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2420253Sjoerg * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2520253Sjoerg * SUCH DAMAGE.
2620253Sjoerg */
2730259Scharnier
2830259Scharnier#ifndef LPDIR_H
2950479Speter#include "LPdir.h"
3030259Scharnier#endif
3130259Scharnier
3220253Sjoergstruct LP_dir_context_st { void *dummy; };
3320253Sjoergconst char *LP_find_file(LP_DIR_CTX **ctx, const char *directory)
3420253Sjoerg	{
3520253Sjoerg	errno = EINVAL;
3620253Sjoerg	return 0;
3720253Sjoerg	}
3820253Sjoergint LP_find_file_end(LP_DIR_CTX **ctx)
3920253Sjoerg	{
4020253Sjoerg	errno = EINVAL;
4120253Sjoerg	return 0;
4220253Sjoerg	}
4320253Sjoerg