2015-01-22 03:40:55 +00:00
|
|
|
/*
|
2016-05-17 19:38:09 +00:00
|
|
|
* Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2004-07-10 13:16:02 +00:00
|
|
|
*
|
2016-05-17 19:38:09 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2004-07-10 13:16:02 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <e_os.h>
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
/*
|
|
|
|
* The routines really come from the Levitte Programming, so to make life
|
|
|
|
* simple, let's just use the raw files and hack the symbols to fit our
|
|
|
|
* namespace.
|
|
|
|
*/
|
2004-07-10 13:16:02 +00:00
|
|
|
#define LP_DIR_CTX OPENSSL_DIR_CTX
|
|
|
|
#define LP_dir_context_st OPENSSL_dir_context_st
|
|
|
|
#define LP_find_file OPENSSL_DIR_read
|
|
|
|
#define LP_find_file_end OPENSSL_DIR_end
|
|
|
|
|
2015-05-14 12:54:49 +00:00
|
|
|
#include "internal/o_dir.h"
|
2004-07-10 13:16:02 +00:00
|
|
|
|
|
|
|
#define LPDIR_H
|
2017-02-22 17:12:04 +00:00
|
|
|
#if defined OPENSSL_SYS_UNIX || defined DJGPP \
|
2017-02-22 18:50:33 +00:00
|
|
|
|| (defined __VMS_VER && __VMS_VER >= 70000000)
|
2015-01-22 03:40:55 +00:00
|
|
|
# include "LPdir_unix.c"
|
2004-07-10 13:16:02 +00:00
|
|
|
#elif defined OPENSSL_SYS_VMS
|
2015-01-22 03:40:55 +00:00
|
|
|
# include "LPdir_vms.c"
|
2004-07-10 13:16:02 +00:00
|
|
|
#elif defined OPENSSL_SYS_WIN32
|
2015-01-22 03:40:55 +00:00
|
|
|
# include "LPdir_win32.c"
|
2004-07-10 13:16:02 +00:00
|
|
|
#elif defined OPENSSL_SYS_WINCE
|
2015-01-22 03:40:55 +00:00
|
|
|
# include "LPdir_wince.c"
|
2004-07-10 13:16:02 +00:00
|
|
|
#else
|
2015-01-22 03:40:55 +00:00
|
|
|
# include "LPdir_nyi.c"
|
2004-07-10 13:16:02 +00:00
|
|
|
#endif
|