regini: Add stub program.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9413a1980f
commit
4d10575df9
|
@ -1747,6 +1747,7 @@ enable_progman
|
|||
enable_reg
|
||||
enable_regasm
|
||||
enable_regedit
|
||||
enable_regini
|
||||
enable_regsvcs
|
||||
enable_regsvr32
|
||||
enable_rpcss
|
||||
|
@ -20910,6 +20911,7 @@ wine_fn_config_makefile programs/reg/tests enable_tests
|
|||
wine_fn_config_makefile programs/regasm enable_regasm
|
||||
wine_fn_config_makefile programs/regedit enable_regedit
|
||||
wine_fn_config_makefile programs/regedit/tests enable_tests
|
||||
wine_fn_config_makefile programs/regini enable_regini
|
||||
wine_fn_config_makefile programs/regsvcs enable_regsvcs
|
||||
wine_fn_config_makefile programs/regsvr32 enable_regsvr32
|
||||
wine_fn_config_makefile programs/rpcss enable_rpcss
|
||||
|
|
|
@ -3891,6 +3891,7 @@ WINE_CONFIG_MAKEFILE(programs/reg/tests)
|
|||
WINE_CONFIG_MAKEFILE(programs/regasm)
|
||||
WINE_CONFIG_MAKEFILE(programs/regedit)
|
||||
WINE_CONFIG_MAKEFILE(programs/regedit/tests)
|
||||
WINE_CONFIG_MAKEFILE(programs/regini)
|
||||
WINE_CONFIG_MAKEFILE(programs/regsvcs)
|
||||
WINE_CONFIG_MAKEFILE(programs/regsvr32)
|
||||
WINE_CONFIG_MAKEFILE(programs/rpcss)
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
MODULE = regini.exe
|
||||
|
||||
EXTRADLLFLAGS = -mconsole -municode -mno-cygwin
|
||||
|
||||
C_SRCS = \
|
||||
main.c
|
|
@ -0,0 +1,33 @@
|
|||
/*
|
||||
* Copyright 2019 Austin English
|
||||
*
|
||||
* 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(regini);
|
||||
|
||||
int 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;
|
||||
}
|
Loading…
Reference in New Issue