From: Oleg Makarenko oleg@makarenk.ooo
--- configure | 2 ++ configure.ac | 1 + dlls/gameinput/GameInput.spec | 1 + dlls/gameinput/Makefile.in | 6 ++++++ dlls/gameinput/gameinput.c | 31 +++++++++++++++++++++++++++++++ 5 files changed, 41 insertions(+) create mode 100644 dlls/gameinput/GameInput.spec create mode 100644 dlls/gameinput/Makefile.in create mode 100644 dlls/gameinput/gameinput.c
diff --git a/configure b/configure index 23fc01d0aad..8b11849501a 100755 --- a/configure +++ b/configure @@ -1158,6 +1158,7 @@ enable_fntcache enable_fontsub enable_fusion enable_fwpuclnt +enable_gameinput enable_gameux enable_gamingtcui enable_gdi32 @@ -22352,6 +22353,7 @@ wine_fn_config_makefile dlls/fontsub enable_fontsub wine_fn_config_makefile dlls/fusion enable_fusion wine_fn_config_makefile dlls/fusion/tests enable_tests wine_fn_config_makefile dlls/fwpuclnt enable_fwpuclnt +wine_fn_config_makefile dlls/gameinput enable_gameinput wine_fn_config_makefile dlls/gameux enable_gameux wine_fn_config_makefile dlls/gameux/tests enable_tests wine_fn_config_makefile dlls/gamingtcui enable_gamingtcui diff --git a/configure.ac b/configure.ac index 6d093b52526..f87159e71b3 100644 --- a/configure.ac +++ b/configure.ac @@ -2720,6 +2720,7 @@ WINE_CONFIG_MAKEFILE(dlls/fontsub) WINE_CONFIG_MAKEFILE(dlls/fusion) WINE_CONFIG_MAKEFILE(dlls/fusion/tests) WINE_CONFIG_MAKEFILE(dlls/fwpuclnt) +WINE_CONFIG_MAKEFILE(dlls/gameinput) WINE_CONFIG_MAKEFILE(dlls/gameux) WINE_CONFIG_MAKEFILE(dlls/gameux/tests) WINE_CONFIG_MAKEFILE(dlls/gamingtcui) diff --git a/dlls/gameinput/GameInput.spec b/dlls/gameinput/GameInput.spec new file mode 100644 index 00000000000..d438558c0cc --- /dev/null +++ b/dlls/gameinput/GameInput.spec @@ -0,0 +1 @@ +@ stdcall GameInputCreate(ptr) diff --git a/dlls/gameinput/Makefile.in b/dlls/gameinput/Makefile.in new file mode 100644 index 00000000000..6eeb97abd97 --- /dev/null +++ b/dlls/gameinput/Makefile.in @@ -0,0 +1,6 @@ +MODULE = GameInput.dll + +EXTRADLLFLAGS = -Wb,--prefer-native + +SOURCES = \ + gameinput.c diff --git a/dlls/gameinput/gameinput.c b/dlls/gameinput/gameinput.c new file mode 100644 index 00000000000..e88faaf789d --- /dev/null +++ b/dlls/gameinput/gameinput.c @@ -0,0 +1,31 @@ +/* + * Copyright 2025 Oleg Makarenko + * + * 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 <stdarg.h> + +#include "windef.h" +#include "winbase.h" +#include "wine/debug.h" + +WINE_DEFAULT_DEBUG_CHANNEL(gameinput); + +HRESULT WINAPI GameInputCreate(void **out) +{ + FIXME("%p stub\n", out); + + return E_NOTIMPL; +}