Module: wine
Branch: master
Commit: c56e5695a735ddec3d3c7de47d9d0e66b05a616f
URL: https://source.winehq.org/git/wine.git/?a=commit;h=c56e5695a735ddec3d3c7de4…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Apr 17 14:15:04 2020 +0200
libport: Remove the Windows libwine stubs.
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
libs/port/Makefile.in | 1 -
libs/port/stubs.c | 59 ---------------------------------------------------
2 files changed, 60 deletions(-)
diff --git a/libs/port/Makefile.in b/libs/port/Makefile.in
index 08e143d26d..0099fd7ddd 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 1a2de3204b..0000000000
--- 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 <stdlib.h>
-#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 */