From c56e5695a735ddec3d3c7de47d9d0e66b05a616f Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 17 Apr 2020 14:15:04 +0200 Subject: [PATCH] libport: Remove the Windows libwine stubs. Signed-off-by: Alexandre Julliard --- libs/port/Makefile.in | 1 - libs/port/stubs.c | 59 ------------------------------------------- 2 files changed, 60 deletions(-) delete mode 100644 libs/port/stubs.c diff --git a/libs/port/Makefile.in b/libs/port/Makefile.in index 08e143d26d0..0099fd7ddd4 100644 --- a/libs/port/Makefile.in +++ b/libs/port/Makefile.in @@ -20,7 +20,6 @@ C_SRCS = \ statvfs.c \ string.c \ strnlen.c \ - stubs.c \ symlink.c \ usleep.c \ wctype.c diff --git a/libs/port/stubs.c b/libs/port/stubs.c deleted file mode 100644 index 1a2de3204b6..00000000000 --- a/libs/port/stubs.c +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Win32 libwine stubs - * - * Copyright 2019 Alexandre Julliard - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -#ifdef _WIN32 - -#include "config.h" - -#include -#include "windef.h" - -int __wine_main_argc = 0; -char **__wine_main_argv = NULL; -WCHAR **__wine_main_wargv = NULL; - -const char *wine_get_config_dir(void) -{ - const char *ret = getenv( "WINEPREFIX" ); - if (!ret) ret = getenv( "USERPROFILE" ); - return ret; -} - -const char *wine_get_data_dir(void) -{ - return NULL; -} - -const char *wine_get_build_dir(void) -{ - return NULL; -} - -const char *wine_get_user_name(void) -{ - return getenv( "USERNAME" ); -} - -const char *wine_dll_enum_load_path( unsigned int index ) -{ - return NULL; -} - -#endif /* _WIN32 */