Skip to content
Snippets Groups Projects
Commit 10b17932 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard
Browse files
parent cbd2af92
No related branches found
No related tags found
No related merge requests found
...@@ -1807,6 +1807,7 @@ enable_uninstaller ...@@ -1807,6 +1807,7 @@ enable_uninstaller
enable_unlodctr enable_unlodctr
enable_view enable_view
enable_wevtutil enable_wevtutil
enable_where
enable_whoami enable_whoami
enable_wineboot enable_wineboot
enable_winebrowser enable_winebrowser
...@@ -21426,6 +21427,7 @@ wine_fn_config_makefile programs/uninstaller enable_uninstaller ...@@ -21426,6 +21427,7 @@ wine_fn_config_makefile programs/uninstaller enable_uninstaller
wine_fn_config_makefile programs/unlodctr enable_unlodctr wine_fn_config_makefile programs/unlodctr enable_unlodctr
wine_fn_config_makefile programs/view enable_view wine_fn_config_makefile programs/view enable_view
wine_fn_config_makefile programs/wevtutil enable_wevtutil wine_fn_config_makefile programs/wevtutil enable_wevtutil
wine_fn_config_makefile programs/where enable_where
wine_fn_config_makefile programs/whoami enable_whoami wine_fn_config_makefile programs/whoami enable_whoami
wine_fn_config_makefile programs/wineboot enable_wineboot wine_fn_config_makefile programs/wineboot enable_wineboot
wine_fn_config_makefile programs/winebrowser enable_winebrowser wine_fn_config_makefile programs/winebrowser enable_winebrowser
......
...@@ -4011,6 +4011,7 @@ WINE_CONFIG_MAKEFILE(programs/uninstaller) ...@@ -4011,6 +4011,7 @@ WINE_CONFIG_MAKEFILE(programs/uninstaller)
WINE_CONFIG_MAKEFILE(programs/unlodctr) WINE_CONFIG_MAKEFILE(programs/unlodctr)
WINE_CONFIG_MAKEFILE(programs/view) WINE_CONFIG_MAKEFILE(programs/view)
WINE_CONFIG_MAKEFILE(programs/wevtutil) WINE_CONFIG_MAKEFILE(programs/wevtutil)
WINE_CONFIG_MAKEFILE(programs/where)
WINE_CONFIG_MAKEFILE(programs/whoami) WINE_CONFIG_MAKEFILE(programs/whoami)
WINE_CONFIG_MAKEFILE(programs/wineboot) WINE_CONFIG_MAKEFILE(programs/wineboot)
WINE_CONFIG_MAKEFILE(programs/winebrowser) WINE_CONFIG_MAKEFILE(programs/winebrowser)
......
MODULE = where.exe
EXTRADLLFLAGS = -mconsole -municode -mno-cygwin
C_SRCS = \
main.c
/*
* Copyright 2020 Louis Lenders
*
* 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
*/
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(where);
int __cdecl wmain(int argc, WCHAR *argv[])
{
int i;
WINE_FIXME("stub:");
for (i = 0; i < argc; i++)
WINE_FIXME(" %s", wine_dbgstr_w(argv[i]));
WINE_FIXME("\n");
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment